aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-30 21:54:53 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-30 21:54:53 +0000
commit86d7c660c4582de4c7530aacbacbd47c013f80cc (patch)
tree53f50f6614e8992bf320839e835db902861aa341 /engine/lib/elgglib.php
parent84224be7064514ab93d9fa9b641507cff23fea25 (diff)
downloadelgg-86d7c660c4582de4c7530aacbacbd47c013f80cc.tar.gz
elgg-86d7c660c4582de4c7530aacbacbd47c013f80cc.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Bugfix on gatekeeper and forcing data functions to privileged only git-svn-id: https://code.elgg.org/elgg/trunk@765 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r--engine/lib/elgglib.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index 4a6c417bd..b5f4870bc 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -1066,12 +1066,14 @@
{
if ($include_subdirs)
{
- if (strpos($call['file'], $path) === 0)
+ if (strpos($call['file'], $path) === 0) {
if ($strict_mode) {
- if ($callstack[2] === $call) return true;
+ if ($callstack[1] === $call) return true;
}
else
return true;
+ }
+ else echo ":{$call['file']}:$path: FAIL\n";
}
else
{