From: Roland Häder Date: Tue, 10 Mar 2009 22:07:27 +0000 (+0000) Subject: Dummy methods removed (didn't find them in code) and stelzi's fix for a lame OS fixed... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=68ceba71a44d2045a47d1a12c2d50583f7f4e967;hp=01bb590df8ed22731be7451d217ce0455d4e3609 Dummy methods removed (didn't find them in code) and stelzi's fix for a lame OS fixed... ;-P --- 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]