diff options
Diffstat (limited to 'admin/index.php')
| -rwxr-xr-x | admin/index.php | 27 |
1 files changed, 0 insertions, 27 deletions
| diff --git a/admin/index.php b/admin/index.php deleted file mode 100755 index 3a5f6be..0000000 --- a/admin/index.php +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | session_start(); | ||
| 4 | |||
| 5 | ob_start(); | ||
| 6 | |||
| 7 | include('../header.php'); | ||
| 8 | |||
| 9 | if (!isset($_SESSION['username'])) | ||
| 10 | { | ||
| 11 | include('login.php'); | ||
| 12 | } else { | ||
| 13 | if (!isset($_GET['file'])) | ||
| 14 | { | ||
| 15 | $file = 'main.php'; | ||
| 16 | } else { | ||
| 17 | $file = basename($_GET['file'] . '.php'); | ||
| 18 | } | ||
| 19 | |||
| 20 | include($file); | ||
| 21 | } | ||
| 22 | |||
| 23 | include('../footer.php'); | ||
| 24 | |||
| 25 | ob_end_flush(); | ||
| 26 | |||
| 27 | ?> | ||
