[pLog-svn] r5999 - plog/branches/lifetype-1.2/class/net

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Oct 22 17:25:53 EDT 2007


Author: oscar
Date: 2007-10-22 17:25:53 -0400 (Mon, 22 Oct 2007)
New Revision: 5999

Modified:
   plog/branches/lifetype-1.2/class/net/linkparser.class.php
Log:
This is a fix for issue 1413 http://bugs.lifetype.net/view.php?id=1413 -- dots were not allowed as part of article category names when using custom URLs. This change fixes the issue but I am not sure if this will have any side effects elsewhere...


Modified: plog/branches/lifetype-1.2/class/net/linkparser.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/net/linkparser.class.php	2007-10-22 18:41:19 UTC (rev 5998)
+++ plog/branches/lifetype-1.2/class/net/linkparser.class.php	2007-10-22 21:25:53 UTC (rev 5999)
@@ -30,7 +30,7 @@
                   '{minutes}' => '([0-9]{2})?',
                   '{postname}' => '([_0-9a-zA-Z.-]+)?',
                   '{postid}' => '([0-9]+)?',
-                  '{catname}' => '([_0-9a-zA-Z-]+)?',
+                  '{catname}' => '([_0-9a-zA-Z-.]+)?',
                   '{catid}' => '([0-9]+)?',
                   '{username}' => '([_0-9a-zA-Z-]+)?',
                   '{userid}' => '([0-9]+)?',



More information about the pLog-svn mailing list