Browse Source

Revert "Fix forward slash on nested prefixes"

This reverts commit ef8cb6e663b70bf286ef436f15e638cc42ee5225.
thinkingmedia 9 years ago
parent
commit
730af4b22d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Template/Error/missing_action.ctp

+ 1 - 1
src/Template/Error/missing_action.ctp

@@ -23,7 +23,7 @@ if (!empty($plugin)) {
 $prefixNs = '';
 if (!empty($prefix)) {
     $prefix = Inflector::camelize($prefix);
-    $prefixNs = '\\' . str_replace('/', '\\', $prefix);
+    $prefixNs = '\\' . $prefix;
     $prefix .= DIRECTORY_SEPARATOR;
 }