Skip to content

Commit 05fd1d9

Browse files
csthomasmbabker
authored andcommitted
Fix parser error in plugin languagefilter on php5 (joomla#19268)
* Fix parser error in plugin languagefilter on php5 * We don't need to explicitly call this statically
1 parent cd1852c commit 05fd1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/system/languagefilter/languagefilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ public function onUserLogin($user, $options = array())
627627
$uri = new JUri($this->app->getUserState('users.login.form.return'));
628628

629629
// Get Itemid from SEF or home page
630-
$query = $this->app::getRouter()->parse($uri);
630+
$query = $this->app->getRouter()->parse($uri);
631631

632632
// Check, if the login form contains a menu item redirection.
633633
if (!empty($query['Itemid']))

0 commit comments

Comments
 (0)