From 9818b2fb2e120b58d8c8a1609d538ddcc5853cf9 Mon Sep 17 00:00:00 2001 From: Jonathan Jaubart Date: Sat, 20 Feb 2016 15:24:06 +0000 Subject: Wrong path to edituser in Login Block When authenticated, the link behind the "logged in as user" points to a wrong URL: it is `..\..\edituser.php` instead of simply `edituser.php` --- app/Module/LoginBlockModule.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') diff --git a/app/Module/LoginBlockModule.php b/app/Module/LoginBlockModule.php index abab215234..2208122ed7 100644 --- a/app/Module/LoginBlockModule.php +++ b/app/Module/LoginBlockModule.php @@ -60,7 +60,7 @@ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { if (Auth::check()) { $title = I18N::translate('Logout'); $content = '
'; - $content .= '
' . I18N::translate('Logged in as ') . ' ' . Auth::user()->getRealNameHtml() . '

'; + $content .= '
' . I18N::translate('Logged in as ') . ' ' . Auth::user()->getRealNameHtml() . '

'; $content .= ''; $content .= '

'; -- cgit v1.3