]> git.mxchange.org Git - core.git/blobdiff - framework/config/class_FrameworkConfiguration.php
Cleanup:
[core.git] / framework / config / class_FrameworkConfiguration.php
index 17c456e7eb2a30a11da4be1e24b89f5c81543a5f..9da74c439969dc295e1a92ebdb95657acb644dcc 100644 (file)
@@ -124,27 +124,6 @@ class FrameworkConfiguration implements Registerable {
                } // END - if
        }
 
-       /**
-        * Setter for runtime magic quotes
-        *
-        * @param       $enableQuotes   Whether enable magic runtime quotes (should be disabled for security reasons)
-        * @return      void
-        * @todo        This method encapsulates a deprecated PHP function and should be deprecated, too.
-        */
-       public final function setMagicQuotesRuntime ($enableQuotes) {
-               // Is the PHP version < 5.4?
-               if (version_compare(phpversion(), '5.4', '>=')) {
-                       // Then silently skip this part as set_magic_quotes_runtime() is deprecated
-                       return;
-               } // END - if
-
-               // Cast it to boolean
-               $enableQuotes = (boolean) $enableQuotes;
-
-               // Set it
-               set_magic_quotes_runtime($enableQuotes);
-       }
-
        /**
         * Checks whether the given configuration key is set
         *