[pLog-svn] r3836 - plog/trunk/class/data/validator

mark at devel.lifetype.net mark at devel.lifetype.net
Thu Aug 3 20:40:47 GMT 2006


Author: mark
Date: 2006-08-03 20:40:46 +0000 (Thu, 03 Aug 2006)
New Revision: 3836

Modified:
   plog/trunk/class/data/validator/templatenamevalidator.class.php
Log:
Fixed an error notice.

Modified: plog/trunk/class/data/validator/templatenamevalidator.class.php
===================================================================
--- plog/trunk/class/data/validator/templatenamevalidator.class.php	2006-08-03 06:43:16 UTC (rev 3835)
+++ plog/trunk/class/data/validator/templatenamevalidator.class.php	2006-08-03 20:40:46 UTC (rev 3836)
@@ -4,7 +4,7 @@
 	include_once( PLOG_CLASS_PATH."class/data/validator/rules/regexprule.class.php" );
 	include_once( PLOG_CLASS_PATH."class/data/validator/rules/nonemptyrule.class.php" );
 
-    define(VALID_REGEXP_CHARS, "^([a-z0-9._-]+)$");
+    define( "VALID_REGEXP_CHARS", "^([a-z0-9._-]+)$");
 
     /**
      * \ingroup Validator



More information about the pLog-svn mailing list