Menu

LC_constants, passing categories problem

Help
Brandi
2005-06-02
2013-03-14
  • Brandi

    Brandi - 2005-06-02

    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

     
    • wickedklown

      wickedklown - 2005-08-01

      where would the file be located

       

Log in to post a comment.