From ca22624b2ba3c7b5b37feeac6c49763e6607ea4d Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 5 Feb 2011 10:43:30 -0500 Subject: [PATCH] Tiny tweak to remove a duplicated line. --- cake/libs/app.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cake/libs/app.php b/cake/libs/app.php index ce7fb4a05..2e3e608b0 100644 --- a/cake/libs/app.php +++ b/cake/libs/app.php @@ -272,11 +272,10 @@ class App { $path = array_flip(array_flip(array_merge( (array)$paths[$type], self::${$type}, $merge ))); - self::${$type} = array_values($path); } else { $path = array_flip(array_flip(array_merge(self::${$type}, $merge))); - self::${$type} = array_values($path); } + self::${$type} = array_values($path); } }