summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdrian Lang <mail@adrianlang.de>2009-03-13 22:06:02 +0100
committerAdrian Lang <mail@adrianlang.de>2009-03-13 22:06:02 +0100
commit40073120b9575dc08db16a5005ba6beb408290e2 (patch)
tree33f1042d7e2483beb209c9920471eb1796db2f32 /lib
parentaa909fad0aab66b64f2e33c1cbe4641ab1ab13e8 (diff)
Fix typo in the the newmessage route.
Diffstat (limited to 'lib')
-rw-r--r--lib/router.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php
index 50d5a4ee1..e39dc217a 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -156,7 +156,7 @@ class Router
array('notice' => '[0-9]+'));
$m->connect('message/new', array('action' => 'newmessage'));
- $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]'));
+ $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]+'));
$m->connect('message/:message',
array('action' => 'showmessage'),
array('message' => '[0-9]+'));