31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-09-27 12:09:01 +00:00

Fix wrong path

Component does only work on windoze systems :(
This commit is contained in:
Nikolai Plath 2014-12-02 12:34:27 -05:00
parent c16dbbdcd9
commit 462aa1cd48

View File

@ -86,7 +86,7 @@ class DisplayController extends \JControllerBase
$paths->insert(JPATH_THEMES . '/' . $this->getApplication()->getTemplate() . '/html/' . \JApplicationHelper::getComponentName() . '/' . $view, 2);
// Add the path for the default layouts
$paths->insert(JPATH_BASE . '/components/' . \JApplicationHelper::getComponentName() . '/PatchTester/View/' . $view . '/tmpl', 1);
$paths->insert(JPATH_BASE . '/components/' . \JApplicationHelper::getComponentName() . '/PatchTester/View/' . ucfirst($view) . '/tmpl', 1);
// Build the class names for the model and view
$viewClass = '\\PatchTester\\View\\' . ucfirst($view) . '\\' . ucfirst($view) . ucfirst($format) . 'View';