Added getfile action

This commit is contained in:
Jeffery To 2009-10-08 10:00:31 +08:00
parent 8a31970ff8
commit f58daa873b
1 changed files with 4 additions and 0 deletions

View File

@ -171,6 +171,10 @@ class Router
array('action' => 'attachment_thumbnail'),
array('attachment' => '[0-9]+'));
$m->connect('getfile/:filename',
array('action' => 'getfile'),
array('filename' => '[A-Za-z0-9._-]+'));
$m->connect('notice/new', array('action' => 'newnotice'));
$m->connect('notice/new?replyto=:replyto',
array('action' => 'newnotice'),