From 43b37cd6088249e016fff0b71f1877fe0423d64a Mon Sep 17 00:00:00 2001 From: AD7six Date: Thu, 7 Jun 2012 23:32:43 +0200 Subject: [PATCH] Revert "actually, just ensure the path is slash terminated" This reverts commit e88a2bcdbb2ce77f151d57938eca9f869231d864. --- lib/Cake/Core/CakePlugin.php | 4 ++-- lib/Cake/View/Errors/missing_component.ctp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Core/CakePlugin.php b/lib/Cake/Core/CakePlugin.php index eb76e73317f..5242c9f9845 100644 --- a/lib/Cake/Core/CakePlugin.php +++ b/lib/Cake/Core/CakePlugin.php @@ -18,7 +18,7 @@ */ /** - * CakePlugin is responsible for loading and unloading plugins. It also can + * CakePlugin is responsible for loading and unloading plugins. It also can * retrieve plugin paths and load their bootstrap and routes files. * * @package Cake.Core @@ -90,7 +90,7 @@ public static function load($plugin, $config = array()) { } } } else { - self::$_plugins[$plugin] = rtrim($config, DS) . DS; + self::$_plugins[$plugin] = $config; } if (empty(self::$_plugins[$plugin]['path'])) { diff --git a/lib/Cake/View/Errors/missing_component.ctp b/lib/Cake/View/Errors/missing_component.ctp index cd717b7ae62..d0e6d239a36 100644 --- a/lib/Cake/View/Errors/missing_component.ctp +++ b/lib/Cake/View/Errors/missing_component.ctp @@ -24,7 +24,7 @@ $pluginDot = empty($plugin) ? null : $plugin . '.';

: - ' . $class . '', (empty($plugin) ? APP_DIR . DS : CakePlugin::path($plugin)) . 'Controller' . DS . 'Component' . DS . $class . '.php'); ?> + ' . $class . '', (empty($plugin) ? APP_DIR : CakePlugin::path($plugin)) . DS . 'Controller' . DS . 'Component' . DS . $class . '.php'); ?>

 <?php