[pLog-svn] r606 - in plog/trunk/class: locale summary/mail template

oscar at devel.plogworld.net oscar at devel.plogworld.net
Wed Dec 29 14:52:16 GMT 2004


Author: oscar
Date: 2004-12-29 14:52:15 +0000 (Wed, 29 Dec 2004)
New Revision: 606

Modified:
   plog/trunk/class/locale/locale.class.php
   plog/trunk/class/summary/mail/confirmemailmessage.class.php
   plog/trunk/class/template/template.class.php
Log:
fixed a few more broken "defines"

Modified: plog/trunk/class/locale/locale.class.php
===================================================================
--- plog/trunk/class/locale/locale.class.php	2004-12-29 14:49:03 UTC (rev 605)
+++ plog/trunk/class/locale/locale.class.php	2004-12-29 14:52:15 UTC (rev 606)
@@ -7,7 +7,7 @@
 	include_once( PLOG_CLASS_PATH."class/object/object.class.php" );
     include_once( PLOG_CLASS_PATH."class/config/config.class.php" );
 
-		define( DEFAULT_LOCALE_FOLDER, PLOG_CLASS_PATH . "locale" );
+	define( "DEFAULT_LOCALE_FOLDER", PLOG_CLASS_PATH . "locale" );
 
     /**
      * Class used to localize messages and things such as dates and numbers.

Modified: plog/trunk/class/summary/mail/confirmemailmessage.class.php
===================================================================
--- plog/trunk/class/summary/mail/confirmemailmessage.class.php	2004-12-29 14:49:03 UTC (rev 605)
+++ plog/trunk/class/summary/mail/confirmemailmessage.class.php	2004-12-29 14:52:15 UTC (rev 606)
@@ -3,7 +3,7 @@
 include_once(PLOG_CLASS_PATH.'class/mail/emailmessage.class.php');
 include_once(PLOG_CLASS_PATH.'class/locale/locales.class.php');
 
-define(CONFIRM_MAIL_TEMPLATE,"email_confirm");
+define( "CONFIRM_MAIL_TEMPLATE", "email_confirm" );
 
 /**
  * email message that represent confirm email message mailed to user
@@ -55,4 +55,4 @@
     }
 }
 
-?>
+?>
\ No newline at end of file

Modified: plog/trunk/class/template/template.class.php
===================================================================
--- plog/trunk/class/template/template.class.php	2004-12-29 14:49:03 UTC (rev 605)
+++ plog/trunk/class/template/template.class.php	2004-12-29 14:52:15 UTC (rev 606)
@@ -12,7 +12,7 @@
      * path to the configuration file for log4php. This needs to be done *before* we
      * even include the LoggerManage from log4php
      */
-    define( LOG4PHP_CONFIGURATION, PLOG_CLASS_PATH."config/log4php.properties" ); 
+    define( "LOG4PHP_CONFIGURATION", PLOG_CLASS_PATH."config/log4php.properties" ); 
     include_once( PLOG_CLASS_PATH."class/logger/log4php/LoggerManager.php" );
 
     /**




More information about the pLog-svn mailing list