From b1a733ed61cba59e78434b7dccaf523ecf6a58a5 Mon Sep 17 00:00:00 2001 From: Anthony GRASSIOT Date: Tue, 12 Aug 2014 15:04:44 +0200 Subject: [PATCH] fix missing helper view - display the correct path --- src/Template/Error/missing_helper.ctp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Template/Error/missing_helper.ctp b/src/Template/Error/missing_helper.ctp index 16f40daf720..f4b484c6022 100644 --- a/src/Template/Error/missing_helper.ctp +++ b/src/Template/Error/missing_helper.ctp @@ -22,7 +22,7 @@ if (!empty($plugin) && Plugin::loaded($plugin)) { $filePath = Plugin::classPath($plugin); } if (!empty($plugin) && !Plugin::loaded($plugin)) { - $filePath = APP_DIR . DS . 'Plugin' . DS . h($plugin) . DS; + $filePath = 'plugins' . DS . h($plugin) . DS . 'src' . DS; } ?>

Missing Helper

@@ -31,7 +31,7 @@ if (!empty($plugin) && !Plugin::loaded($plugin)) { %s could not be found.', h($pluginDot . $class)); ?> %s is in the %s directory and was loaded.', h($plugin), 'plugins'); endif; ?>