Here is the error I get -
Warning: setlocale(): Passing locale category name as string is deprecated. Use the LC_* -constants instead. in /home/virtual/site6/fst/var/www/html/mainfile.php on line 256
any solutions?
here is line 251-259 of the code..
function formatTimestamp($time) {
include ("config.php");
global $datetime;
setlocale ("LC_TIME", "$locale");
ereg ("([0-9]{4})-([0-9]{1,2})-([0-9]{1,2}) ([0-9]{1,2})🙁[0-9]{1,2})🙁[0-9]{1,2})", $time, $datetime);
$datetime = strftime("".translate("datestring")."", mktime($datetime[4],$datetime[5],$datetime[6],$datetime[2],$datetime[3],$datetime[1]));
$datetime = ucfirst($datetime);
return($datetime);
}