Skip to content

Commit

Permalink
Fixed phone display if no value set
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Nov 20, 2013
1 parent 7f77f1e commit d46556a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/backend/users/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
<ul>
<li>{{ $user->userloc->address }} {{ $user->userloc->address2 }}</li>
<li>{{ $user->userloc->city }}, {{ $user->userloc->state }} {{ $user->userloc->zip }}<br /><br /></li>
@if (isset($user->phone))
@if ($user->phone)
<li><i class="icon-phone"></i>{{ $user->phone }}</li>
@endif
<li><i class="icon-envelope-alt"></i><a href="mailto:{{ $user->email }}">{{ $user->email }}</a></li>
Expand Down

0 comments on commit d46556a

Please sign in to comment.