Dummy methods removed (didn't find them in code) and stelzi's fix for a lame OS fixed...
authorRoland Häder <roland@mxchange.org>
Tue, 10 Mar 2009 22:07:27 +0000 (22:07 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 10 Mar 2009 22:07:27 +0000 (22:07 +0000)
inc/config/class_FrameworkConfiguration.php

index 7823feaebbd4232557f27aa6975a6af794a66ecd..28f0c0a6786852b7004dd4d0c1443e1b46b29dff 100644 (file)
@@ -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]