aboutsummaryrefslogtreecommitdiff
path: root/admin/index.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-14 21:09:47 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-14 21:09:47 +0000
commit0c732d6f7f952f0359904bbb752f94aff3d98d98 (patch)
tree01ce50b0426b30249d06e825114c8ca045f48129 /admin/index.php
parent12d286988dbcdff5aad3620838e7ab777ac67a92 (diff)
downloadelgg-0c732d6f7f952f0359904bbb752f94aff3d98d98.tar.gz
elgg-0c732d6f7f952f0359904bbb752f94aff3d98d98.tar.bz2
Standardized admin/*
git-svn-id: http://code.elgg.org/elgg/trunk@3543 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'admin/index.php')
-rw-r--r--admin/index.php31
1 files changed, 13 insertions, 18 deletions
diff --git a/admin/index.php b/admin/index.php
index 98466cb20..4ee190213 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -1,21 +1,16 @@
<?php
+/**
+ * Elgg administration system index
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg administration system index
- *
- * @package Elgg
- * @subpackage Core
+// Get the Elgg framework
+require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
- * @author Curverider Ltd
-
- * @link http://elgg.org/
- */
-
- // Get the Elgg framework
- require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
-
- // Make sure only valid admin users can see this
- admin_gatekeeper();
- forward('pg/admin/statistics/')
-
-?> \ No newline at end of file
+// Make sure only valid admin users can see this
+admin_gatekeeper();
+forward('pg/admin/statistics/'); \ No newline at end of file