Backport: [imp] avoid to open div and closing it in different files

This PR backports: https://github.com/joomla/joomla-cms/pull/6134 to the weblinks repo and fixes: https://github.com/joomla-extensions/weblinks/issues/28
This commit is contained in:
zero-24 2015-04-09 14:03:24 +02:00
parent f8e87d5689
commit d3b6aefe14
1 changed files with 5 additions and 3 deletions

View File

@ -22,8 +22,10 @@ jQuery(function($) {
});
});
});");
echo JLayoutHelper::render('joomla.content.categories_default', $this);
echo $this->loadTemplate('items');
?>
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
<?php
echo JLayoutHelper::render('joomla.content.categories_default', $this);
echo $this->loadTemplate('items');
?>
</div>