view.inc.php 625 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
  5. *
  6. * You should have received a copy of the
  7. * COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  8. * along with this program. If not, see http://www.sun.com/cddl/cddl.html
  9. *
  10. * 2019 - 2020 https://://www.bananas-playground.net/projekt/selfpaste
  11. */
  12. if (file_exists($contentBody)) {
  13. header('Expires: 0');
  14. header('Cache-Control: must-revalidate');
  15. header('Pragma: public');
  16. readfile($contentBody);
  17. exit;
  18. }
  19. else {
  20. echo $contentBody;
  21. }