diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-28 10:14:23 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-28 10:14:23 +0000 |
commit | 27ac22034eec297e5000938c7c349480a448a680 (patch) | |
tree | 8eb79483a4a6c40c1104cb2120f8d1583abf7e18 /engine/lib/access.php | |
parent | 42bcb1f9c22d3145bde986c49c53359cff680d6d (diff) | |
download | elgg-27ac22034eec297e5000938c7c349480a448a680.tar.gz elgg-27ac22034eec297e5000938c7c349480a448a680.tar.bz2 |
Removed spurious notice
git-svn-id: https://code.elgg.org/elgg/trunk@2324 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/access.php')
-rw-r--r-- | engine/lib/access.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/access.php b/engine/lib/access.php index f52d839de..44693c3ea 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -55,7 +55,7 @@ global $CONFIG;
static $access_array; - if (!isset($access_array) || !$init_finished)
+ if (!isset($access_array) || (!isset($init_finished)) || (!$init_finished))
$access_array = array();
if ($user_id == 0) $user_id = $_SESSION['guid'];
|