rathena / FluxCP

Undefined function call detected PHP-E1000
Bug risk
Critical
2 occurrences in this check
Function set_magic_quotes_runtime not found
2709            $file_buffer = $this->encodeString($file_buffer, $encoding);
2710            if ($magic_quotes) {
2711                if (version_compare(PHP_VERSION, '5.3.0', '<')) {
2712                    set_magic_quotes_runtime($magic_quotes);2713                } else {
2714                    ini_set('magic_quotes_runtime', $magic_quotes);
2715                }
Function set_magic_quotes_runtime not found
2697            $magic_quotes = get_magic_quotes_runtime();
2698            if ($magic_quotes) {
2699                if (version_compare(PHP_VERSION, '5.3.0', '<')) {
2700                    set_magic_quotes_runtime(false);2701                } else {
2702                    //Doesn't exist in PHP 5.4, but we don't need to check because
2703                    //get_magic_quotes_runtime always returns false in 5.4+