diff options
author | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 07:35:58 +0000 |
---|---|---|
committer | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 07:35:58 +0000 |
commit | 0238b662ac2bea7f79e2cb1c66b2ccaff72284b8 (patch) | |
tree | 491931d9d1799d2654aa26444cdbe7027e9588f8 /web/include/thebrain.php | |
parent | 44d08ff2ddedc0ac2100ce92dce113d31dee7c14 (diff) | |
download | ioquake3-aero-0238b662ac2bea7f79e2cb1c66b2ccaff72284b8.tar.gz ioquake3-aero-0238b662ac2bea7f79e2cb1c66b2ccaff72284b8.zip |
lots of changes
git-svn-id: svn://svn.icculus.org/quake3/trunk@224 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'web/include/thebrain.php')
-rw-r--r-- | web/include/thebrain.php | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/web/include/thebrain.php b/web/include/thebrain.php index eb36a73..0baf3d0 100644 --- a/web/include/thebrain.php +++ b/web/include/thebrain.php @@ -6,12 +6,14 @@ $navlist = array( ); function include_safe($file) { - if (strpos(realpath("include/$file"), realpath($_SERVER['DOCUMENT_ROOT'])) !== 0) { - $code = 403; - require("errors.php"); - } - elseif (file_exists("include/$file")) { - include($file); + if (file_exists("include/$file")) { + if (strpos(realpath("include/$file"), realpath($_SERVER['DOCUMENT_ROOT'])) !== 0) { + $code = 403; + require("errors.php"); + } + else { + include($file); + } } else { $code = 404; @@ -24,5 +26,5 @@ if (!$_GET['page']) { } else { $page = $_GET['page']; - +} ?> |