plant-test-report.php 367 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * plant-test-report.php
  4. *
  5. * This was a modX resource body fragment.
  6. * Redirects to the migrated plant test data entry page.
  7. */
  8. if (session_status() === PHP_SESSION_NONE) {
  9. session_start();
  10. }
  11. require_once __DIR__ . '/../../../lib/auth.php';
  12. requireLogin();
  13. header('Location: /dashboard/crop-analysis/plant-test-data/plant-test-data.php');
  14. exit;