From 1b97bf069fc1f643229d1d12edd56c7950499117 Mon Sep 17 00:00:00 2001 From: pblasquez Date: Mon, 8 Feb 2016 16:09:16 -0800 Subject: [PATCH] Update rewrites.php --- includes/rewrites.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/rewrites.php b/includes/rewrites.php index 7be24032b1..b4b28cd631 100644 --- a/includes/rewrites.php +++ b/includes/rewrites.php @@ -9,6 +9,7 @@ function rewrite_location($location) { foreach ($config['location_map_regex'] as $reg => $val) { if (preg_match($reg, $location)) { $location = $val; + continue; } } }