From 68ceba71a44d2045a47d1a12c2d50583f7f4e967 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 10 Mar 2009 22:07:27 +0000 Subject: [PATCH 1/1] Dummy methods removed (didn't find them in code) and stelzi's fix for a lame OS fixed... ;-P --- inc/config/class_FrameworkConfiguration.php | 27 +++------------------ 1 file changed, 3 insertions(+), 24 deletions(-) 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] -- 2.39.2