summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/general/routing.rst
diff options
context:
space:
mode:
authorJonatas Miguel <jonatas.df.miguel@gmail.com>2012-08-30 13:57:54 +0200
committerJonatas Miguel <jonatas.df.miguel@gmail.com>2012-08-30 13:57:54 +0200
commit8f1cdd1904d9f8da9e9cbd383e4385740cc6951b (patch)
tree811d1dc255319d94ee634c1db589e361a1a472e3 /user_guide_src/source/general/routing.rst
parentf002c2a825ccf6785e3867b4ecb92fe6013d364f (diff)
Changed spaces to tabs where appropriate.
Diffstat (limited to 'user_guide_src/source/general/routing.rst')
-rw-r--r--user_guide_src/source/general/routing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/general/routing.rst b/user_guide_src/source/general/routing.rst
index 0a16e13af..edbc735c4 100644
--- a/user_guide_src/source/general/routing.rst
+++ b/user_guide_src/source/general/routing.rst
@@ -113,7 +113,7 @@ If you are using PHP >= 5.3 you can use callbacks in place of the normal routing
rules to process the back-references. Example::
$route['products/([a-z]+)/edit/(\d+)'] = function ($product_type, $id)
- {
+ {
return "catalog/product_edit/" . strtolower($product_type) . "/" . $id;
};