View Single Post
  #6  
Old 12th April 2020, 18:15
antimidas antimidas is offline
Senior Member
 
Join Date: Mar 2011
United States
Posts: 67
Default
Quote:
Originally Posted by Napon View Post
well its done thats the main thing oops

but Evil-Trinity-master

Code:
 ////////Strip slashes by system//////////
function cleanquotes(&$in)
{
    if (is_array($in)) return array_walk($in, 'cleanquotes');
    return $in = stripslashes($in);
}
if (get_magic_quotes_gpc()) {
    array_walk($_GET, 'cleanquotes');
    array_walk($_POST, 'cleanquotes');
    array_walk($_COOKIE, 'cleanquotes');
    array_walk($_REQUEST, 'cleanquotes');
}
Code:
function unesc($x)
{
    if (get_magic_quotes_gpc()) return stripslashes($x);
    return $x;
}
Code:
if (get_magic_quotes_gpc() || get_magic_quotes_runtime() || ini_get('magic_quotes_sybase'))
die('PHP is configured incorrectly. Turn off magic quotes.');
if (ini_get('register_long_arrays') || ini_get('register_globals') || ini_get('safe_mode'))
not fixed
i mean i removed this old function over 3 years ago on a 09 i did..its been gone for some time now if your going to update the code do it properly
Evil-trinity is not v5..... I have been working on code all day... fresh install running on php7.4 with mariadb10.4

Yes it has a lot to go, but I am one person. I also has stated over and over that I am a novice coder at best. Also a single father... So my kid comes before anything else.

Bump: But, I will take the free help and say thank you. I appreciate it. And glad we can have a somewhat civil convo
Reply With Quote