From 75914394512c8752017b8516c0d445a8ec33d1f3 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 1 Dec 2009 10:02:22 -0800 Subject: [PATCH] Add missing rule for /api/users/show.:format --- lib/router.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/router.php b/lib/router.php index beb98eb04d..1a090861e4 100644 --- a/lib/router.php +++ b/lib/router.php @@ -358,6 +358,10 @@ class Router // users + $m->connect('api/users/show.:format', + array('action' => 'ApiUserShow', + 'format' => '(xml|json)')); + $m->connect('api/users/show/:id.:format', array('action' => 'ApiUserShow', 'id' => '[a-zA-Z0-9]+',