From 2fac37074177e9bde1b3e11856711300b545f71f Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Sun, 9 Nov 2014 12:51:46 -0700 Subject: [PATCH] Change paths() method to be more useful --- system/src/Grav/Common/Uri.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Uri.php b/system/src/Grav/Common/Uri.php index 77f6e6c1e..05c264a8e 100644 --- a/system/src/Grav/Common/Uri.php +++ b/system/src/Grav/Common/Uri.php @@ -130,7 +130,7 @@ class Uri if (isset($id)) { return $this->paths[$id]; } else { - return implode('/', $this->paths); + return $this->paths; } }