| 123456789101112131415161718 |
- <?php
- /**
- * plant-test-report.php
- *
- * This was a modX resource body fragment.
- * Redirects to the migrated plant test data entry page.
- */
- if (session_status() === PHP_SESSION_NONE) {
- session_start();
- }
- require_once __DIR__ . '/../../../lib/auth.php';
- requireLogin();
- header('Location: /dashboard/crop-analysis/plant-test-data/plant-test-data.php');
- exit;
|