]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix for Mapstraction plugin's zoomed map links
authorBrion Vibber <brion@pobox.com>
Thu, 28 Jan 2010 05:42:13 +0000 (21:42 -0800)
committerBrion Vibber <brion@pobox.com>
Thu, 28 Jan 2010 05:42:13 +0000 (21:42 -0800)
Move definition of NICKNAME_FMT above plugin initialization but below loading of Validate package.
A merge error when refactoring setup lead to this not being defined yet when plugins were initialized, causing the router setup in MapstractionPlugin which tried to use this constant to fail.
Result was bogus links and if you hit the URL directly the action would be "unrecognized".

lib/common.php

index b4e4a653c8360f343086681d1985175a71a0eb24..b482464aacca346cf90218117e846449e2dd848f 100644 (file)
@@ -115,6 +115,10 @@ function __autoload($cls)
 require_once 'Validate.php';
 require_once 'markdown.php';
 
+// XXX: other formats here
+
+define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
+
 require_once INSTALLDIR.'/lib/util.php';
 require_once INSTALLDIR.'/lib/action.php';
 require_once INSTALLDIR.'/lib/mail.php';
@@ -136,6 +140,3 @@ try {
     exit;
 }
 
-// XXX: other formats here
-
-define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);