edit-personal-details.php 386 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * login/edit-personal-details.php
  4. *
  5. * Redirects to the migrated account settings page.
  6. * This modX resource body has been superseded by dashboard/client-settings/index.php.
  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/client-settings/index.php');
  14. exit;