From 221c61a49939dac779f68e4584dd9655b3e7201e Mon Sep 17 00:00:00 2001 From: Adrian Lang Date: Fri, 13 Mar 2009 22:06:02 +0100 Subject: [PATCH 1/2] Fix typo in the the newmessage route. --- lib/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/router.php b/lib/router.php index 50d5a4ee13..e39dc217a3 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]+')); From 3eff673a0fc490f57841a7a9b6ea79cbd42d46ed Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 14 Mar 2009 23:25:43 -0400 Subject: [PATCH 2/2] Add Adium to notice sources --- db/notice_source.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/notice_source.sql b/db/notice_source.sql index ea04862e08..5e2d413c00 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -43,4 +43,5 @@ VALUES ('twittertools','Twitter Tools','http://wordpress.org/extend/plugins/twitter-tools/', now()), ('twitux','Twitux','http://live.gnome.org/DanielMorales/Twitux', now()), ('twitvim','TwitVim','http://vim.sourceforge.net/scripts/script.php?script_id=2204', now()), - ('urfastr','urfastr','http://urfastr.net/', now()); + ('urfastr','urfastr','http://urfastr.net/', now()), + ('adium', 'Adium', 'http://www.adiumx.com/', now()));