diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:10:43 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:10:43 -0500 |
commit | 9a83f50042925e0daa0aab1b44fcc8d39e79edf2 (patch) | |
tree | 8b193b16a9da1d03b4f821d0c40f1135a9c3ad93 /admin | |
parent | d90a057aba60810640d95d135e08d802fda7a04f (diff) | |
download | ampache-9a83f50042925e0daa0aab1b44fcc8d39e79edf2.tar.gz ampache-9a83f50042925e0daa0aab1b44fcc8d39e79edf2.tar.bz2 ampache-9a83f50042925e0daa0aab1b44fcc8d39e79edf2.zip |
Consistently use require_once to load init.php
Diffstat (limited to 'admin')
-rw-r--r-- | admin/access.php | 2 | ||||
-rw-r--r-- | admin/flag.php | 2 | ||||
-rw-r--r-- | admin/index.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/admin/access.php b/admin/access.php index 376c6fad..8c37d35d 100644 --- a/admin/access.php +++ b/admin/access.php @@ -20,7 +20,7 @@ * */ -require '../lib/init.php'; +require_once '../lib/init.php'; if (!Access::check('interface','100')) { access_denied(); diff --git a/admin/flag.php b/admin/flag.php index 943a281e..ffbc6655 100644 --- a/admin/flag.php +++ b/admin/flag.php @@ -20,7 +20,7 @@ * */ -require '../lib/init.php'; +require_once '../lib/init.php'; if (!Access::check('interface','100')) { access_denied(); diff --git a/admin/index.php b/admin/index.php index a8262a46..501d6663 100644 --- a/admin/index.php +++ b/admin/index.php @@ -20,7 +20,7 @@ * */ -require '../lib/init.php'; +require_once '../lib/init.php'; if (!Access::check('interface',100)) { access_denied(); |