diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-04 14:25:10 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-04 14:25:10 +0000 |
commit | 29caac489755630e7ffc345774d091ae36434eb3 (patch) | |
tree | 18bbb48aa25ab01823e4581e8738ad754feeebed /engine/lib/elgglib.php | |
parent | e0bf16d39ae82a9e9af059839d1f981345380310 (diff) | |
download | elgg-29caac489755630e7ffc345774d091ae36434eb3.tar.gz elgg-29caac489755630e7ffc345774d091ae36434eb3.tar.bz2 |
Fixed the callpath_gatekeeper on Windows machines.
git-svn-id: https://code.elgg.org/elgg/trunk@795 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r-- | engine/lib/elgglib.php | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 9fb8b35c4..ba122b2ec 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -1065,12 +1065,15 @@ $callstack = debug_backtrace(); foreach ($callstack as $call) - { + {
+ $call['file'] = str_replace("\\","/",$call['file']);
+ if ($include_subdirs) { if (strpos($call['file'], $path) === 0) { - if ($strict_mode) { + if ($strict_mode) {
+ $callstack[1]['file'] = str_replace("\\","/",$callstack[1]['file']); if ($callstack[1] === $call) { return true; } } else @@ -1081,14 +1084,16 @@ } else { - if (strcmp($path, $call['file'])==0) + if (strcmp($path, $call['file'])==0) { if ($strict_mode) { if ($callstack[1] === $call) return true; } else - return true; + return true;
+ } } - } + }
+ return false; } if ($CONFIG->debug) |