View Single Post
  #4  
Old 18th November 2019, 14:37
Subzero's Avatar
Subzero Subzero is offline
Coder
 
Join Date: Jul 2008
P2P
Posts: 190
Default
Hi,

This ->
Code:
function strip_magic_quotes($arr)
{
foreach ($arr as $k => $v)
{
if (is_array($v))
 { $arr[$k] = strip_magic_quotes($v); }
else
 { $arr[$k] = stripslashes($v); }
}
return $arr;
}
Looks to already been declared in trackervarnost.php

Please post the file trackervarnost.php

Thanks
Reply With Quote