X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig%2Fclass_FrameworkConfiguration.php;h=28f0c0a6786852b7004dd4d0c1443e1b46b29dff;hb=68ceba71a44d2045a47d1a12c2d50583f7f4e967;hp=7823feaebbd4232557f27aa6975a6af794a66ecd;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae;p=core.git diff --git a/inc/config/class_FrameworkConfiguration.php b/inc/config/class_FrameworkConfiguration.php index 7823feae..28f0c0a6 100644 --- a/inc/config/class_FrameworkConfiguration.php +++ b/inc/config/class_FrameworkConfiguration.php @@ -229,7 +229,7 @@ class FrameworkConfiguration implements Registerable { } /** - * Detect safely the script path without trailing slash which is the part + * Detect safely the script path without trailing slash which is the glue * between "http://your-domain.invalid/" and "script-name.php" */ public function detectScriptPath () { @@ -238,34 +238,13 @@ class FrameworkConfiguration implements Registerable { // Is the scriptname set? if (isset($_SERVER['SCRIPT_NAME'])) { - // Get dirname of it - $scriptPath = dirname($_SERVER['SCRIPT_NAME']); + // Get dirname from it and replace back-slashes with slashes for lame OSes... + $scriptPath = str_replace("\\", "/", dirname($_SERVER['SCRIPT_NAME'])); } // END - if // Return it return $scriptPath; } - - /** - * Getter for field name - * - * @param $fieldName Field name which we shall get - * @return $fieldValue Field value from the user - */ - function getField ($fieldName) { - // Dummy method! - } - - /** - * Updates a given field with new value - * - * @param $fieldName Field to update - * @param $fieldValue New value to store - * @return void - */ - public function updateDatabaseField ($fieldName, $fieldValue) { - // Dummy method! - } } // [EOF]