[pLog-svn] r1392 - plog/trunk/locale

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Wed Mar 9 22:37:39 GMT 2005


Author: jondaley
Date: 2005-03-09 22:37:39 +0000 (Wed, 09 Mar 2005)
New Revision: 1392

Modified:
   plog/trunk/locale/locale_en_US.php
Log:
using include once seems to not always include the file, and thus the messages don't get set right.  I am not sure why I need to do this.

Modified: plog/trunk/locale/locale_en_US.php
===================================================================
--- plog/trunk/locale/locale_en_US.php	2005-03-09 17:57:01 UTC (rev 1391)
+++ plog/trunk/locale/locale_en_US.php	2005-03-09 22:37:39 UTC (rev 1392)
@@ -1,7 +1,8 @@
 <?php
 
 // include UK messages, and then just change the ones we don't like
-include_once( PLOG_CLASS_PATH."locale/locale_en_UK.php" );  
+include(PLOG_CLASS_PATH . "locale/locale_en_UK.php" );  
+
 $messages['locale_description'] = 'English/American locale file for pLog';
 
 // As dumb as it is, Americans like the month/day/year format




More information about the pLog-svn mailing list