From 0846d746cfe30f827dd20952a6b492ec4b61de95 Mon Sep 17 00:00:00 2001 From: Greg Aker Date: Thu, 8 Apr 2010 11:47:33 -0500 Subject: Update to realpath() check of SYSDIR in index.php --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index fa34c6514..0eef7b895 100644 --- a/index.php +++ b/index.php @@ -102,7 +102,7 @@ * Resolve the system path for increased reliability * --------------------------------------------------------------- */ - if (function_exists('realpath') AND @realpath($system_path) !== FALSE) + if (realpath($system_path) !== FALSE) { $system_path = realpath($system_path).'/'; } -- cgit v1.2.3-24-g4f1b