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; ?>