When I first installed osSuite, I got the following error message:
Note: As of PHP 4.2.0, passing category as a string is deprecated, use the above constants instead. Passing them as a string (within quotes) will result in a warning message.
The way to fix this problem is to remove the quotes around the word:
change:
setlocale('LC_TIME', 'en_US.ISO_8859-1');
TO:
setlocale(LC_TIME, 'en_US.ISO_8859-1');
without the single quotes around the LC_TIME part.
--Brandi
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I first installed osSuite, I got the following error message:
Note: As of PHP 4.2.0, passing category as a string is deprecated, use the above constants instead. Passing them as a string (within quotes) will result in a warning message.
The way to fix this problem is to remove the quotes around the word:
change:
setlocale('LC_TIME', 'en_US.ISO_8859-1');
TO:
setlocale(LC_TIME, 'en_US.ISO_8859-1');
without the single quotes around the LC_TIME part.
--Brandi
where would the file be located