LITLE FIX: solving issue for php 5.4.x version that have E_STRICT standard enabled by default

This commit is contained in:
Erik Amaru Ortiz
2013-04-30 10:49:13 -04:00
parent 3ae7f578d7
commit d750b62c83

View File

@@ -40,7 +40,7 @@ class Bootstrap
* these functions still under revision * these functions still under revision
*/ */
public function getSystemConfiguration($globalIniFile = '', $wsIniFile = '', $wsName = '') public static function getSystemConfiguration($globalIniFile = '', $wsIniFile = '', $wsName = '')
{ {
$readGlobalIniFile = false; $readGlobalIniFile = false;
$readWsIniFile = false; $readWsIniFile = false;
@@ -2752,7 +2752,7 @@ class Bootstrap
* @param boolean $createPath if true this public function will create the path * @param boolean $createPath if true this public function will create the path
* @return boolean * @return boolean
*/ */
public function verifyPath($strPath, $createPath = false) public static function verifyPath($strPath, $createPath = false)
{ {
$folder_path = strstr($strPath, '.') ? dirname($strPath) : $strPath; $folder_path = strstr($strPath, '.') ? dirname($strPath) : $strPath;