From 451b24ca0217f0f1adc4b55b27e13582ce703e4b Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 14 Nov 2011 09:27:34 -0500 Subject: [PATCH] Adjust routes syntax since previous code *should* have been bugged. --- application/config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/config/routes.php b/application/config/routes.php index a33611a..6160df2 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -43,7 +43,7 @@ $route['404_override'] = ''; $route['random'] = 'view/random'; $route['latest'] = 'view/latest'; -$route['[0-9]+'] = 'view/specific/$1'; +$route['([0-9]+)'] = 'view/specific/$1';