From cc49d28ef8baa5612a6e3806b16e1372b91f0f4f Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 10 May 2014 22:02:22 -0400 Subject: [PATCH] Fix double / in missing component error page. Fixes #3466 --- lib/Cake/View/Errors/missing_component.ctp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/View/Errors/missing_component.ctp b/lib/Cake/View/Errors/missing_component.ctp index ae72b0ea7..2d384b2d7 100644 --- a/lib/Cake/View/Errors/missing_component.ctp +++ b/lib/Cake/View/Errors/missing_component.ctp @@ -25,7 +25,7 @@ $pluginDot = empty($plugin) ? null : $plugin . '.';

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

 <?php