From 4ce81f27a487046a5952a253ecf4d36537dbf6ab Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Sun, 5 May 2013 16:36:16 -0700 Subject: [PATCH] I think your meant to use is_readable() here --- krumo/class.krumo.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/krumo/class.krumo.php b/krumo/class.krumo.php index 5299ae5..ea416db 100644 --- a/krumo/class.krumo.php +++ b/krumo/class.krumo.php @@ -15,11 +15,11 @@ ////////////////////////////////////////////////////////////////////////////// -/** -* backward compatibility: the DIR_SEP constant isn't used anymore -*/ -if(!defined('DIR_SEP')) { - define('DIR_SEP', DIRECTORY_SEPARATOR); +/** +* backward compatibility: the DIR_SEP constant isn't used anymore +*/ +if(!defined('DIR_SEP')) { + define('DIR_SEP', DIRECTORY_SEPARATOR); } /** * backward compatibility: the PATH_SEPARATOR constant is availble since 4.3.0RC2 @@ -30,10 +30,10 @@ if (!defined('PATH_SEPARATOR')) { // -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -/** +/** * Set the KRUMO_DIR constant up with the absolute path to Krumo files. If it is * not defined, include_path will be used. Set KRUMO_DIR only if any other module -* or application has not already set it up. +* or application has not already set it up. */ if (!defined('KRUMO_DIR')) { define('KRUMO_DIR', dirname(__FILE__) . DIRECTORY_SEPARATOR); @@ -274,7 +274,7 @@ This is a list of all HTTP request headers. return false; } - if (!readable(get_cfg_var('cfg_file_path'))) { + if (!is_readable(get_cfg_var('cfg_file_path'))) { return false; } @@ -1301,4 +1301,4 @@ Function krumo() { ////////////////////////////////////////////////////////////////////////////// -?> \ No newline at end of file +?>