Skip to content
This repository has been archived by the owner on Dec 4, 2019. It is now read-only.

Commit

Permalink
Fix two method calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Aug 2, 2014
1 parent 8e93b49 commit 756e445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/admin/layout/menu.blade.php
Expand Up @@ -20,8 +20,8 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ trans('fluxbb::admin_common.welcome') }} {{ Auth::user()->username }} <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{{ URL::$route('profile', array('id' => Auth::user()->id)) }}">{{ trans('fluxbb::common.profile') }}</a></li>
<li><a href="{{ URL::$route('index') }}">{{ trans('fluxbb::common.forum') }}</a></li>
<li><a href="{{ $route('profile', array('id' => Auth::user()->id)) }}">{{ trans('fluxbb::common.profile') }}</a></li>
<li><a href="{{ $route('index') }}">{{ trans('fluxbb::common.forum') }}</a></li>
<li class="divider"></li>
<li><a href="#">Support</a></li>
<li class="divider"></li>
Expand Down

0 comments on commit 756e445

Please sign in to comment.