Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

notfound.php 349B

12345678910111213141516171819
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/common.php');
  4. define('TITLE', 'Issue tracker :: 404 - Page not found');
  5. addDashboardItem('Actions', 'Raise new issue', 'addissue');
  6. include_once('res/commonDashboard.php');
  7. require_once('lib/header.php');
  8. require_once('pages/404.php');
  9. require_once('lib/footer.php');
  10. ?>