X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frouter.php;h=5ee7fcc5c0966c89350b2e0aed2169fc3137bb1d;hb=31c1177970124cee31823cab3a11542c23b4126d;hp=7f17f2d0a5145f683e398a47a781be60e842e8ab;hpb=894d4ba16f28a4bdd274378d9669d76a717eec31;p=quix0rs-gnu-social.git diff --git a/lib/router.php b/lib/router.php index 7f17f2d0a5..5ee7fcc5c0 100644 --- a/lib/router.php +++ b/lib/router.php @@ -335,6 +335,9 @@ class Router $m->connect('conversation/:id', array('action' => 'conversation'), array('id' => '[0-9]+')); + $m->connect('conversation/:id/replies', + array('action' => 'conversationreplies'), + array('id' => '[0-9]+')); $m->connect('message/new', array('action' => 'newmessage')); $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => Nickname::DISPLAY_FMT));