From 10ba4dd773667b6038e2cfc4d9e361e46eff0512 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Thu, 6 Jun 2013 00:11:50 +0200 Subject: [PATCH] Fixed CS errors --- lib/Cake/Routing/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Routing/Router.php b/lib/Cake/Routing/Router.php index 5ea8d9558..0b8f82329 100644 --- a/lib/Cake/Routing/Router.php +++ b/lib/Cake/Routing/Router.php @@ -805,7 +805,7 @@ class Router { if (empty($url)) { $output = isset($path['here']) ? $path['here'] : '/'; if ($full) { - $output = self::baseURL() . $output; + $output = self::baseURL() . $output; } return $output; } elseif (is_array($url)) {