mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37:52 +00:00
Fix upstream controller method compatibility
This commit is contained in:
@@ -12,13 +12,13 @@ jimport('joomla.application.component.controller');
|
|||||||
*/
|
*/
|
||||||
class SportsManagerController extends JControllerLegacy
|
class SportsManagerController extends JControllerLegacy
|
||||||
{
|
{
|
||||||
function display()
|
public function display($cachable = false, $urlparams = false)
|
||||||
{
|
{
|
||||||
// Setzt einen Standard view
|
// Setzt einen Standard view
|
||||||
if ( ! JRequest::getCmd( 'view' ) ) {
|
if ( ! JRequest::getCmd( 'view' ) ) {
|
||||||
JRequest::setVar('view', 'categories' );
|
JRequest::setVar('view', 'categories' );
|
||||||
}
|
}
|
||||||
parent::display();
|
return parent::display($cachable, $urlparams);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user