aboutsummaryrefslogtreecommitdiff
path: root/resources/views/user/top.blade.php
diff options
context:
space:
mode:
authorCamil Staps2016-10-18 20:52:56 +0200
committerCamil Staps2016-10-18 20:52:56 +0200
commit4528618b32a1dd604ac1080b6c64d3ea67a3e742 (patch)
treee9d769db22a5d3243dd32971b2fcf4a4ccd92741 /resources/views/user/top.blade.php
parentFix authentication (diff)
Hide top users on some pages
Diffstat (limited to 'resources/views/user/top.blade.php')
-rw-r--r--resources/views/user/top.blade.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/user/top.blade.php b/resources/views/user/top.blade.php
index 4116fcf..eeeafde 100644
--- a/resources/views/user/top.blade.php
+++ b/resources/views/user/top.blade.php
@@ -23,7 +23,7 @@ $users = User::where('isadmin', false)
<tbody>
@foreach($users as $user)
<tr>
- <td><img src="https://gravatar.com/avatar/{{ md5(strtolower(trim($user->email))) }}?s=40"/></td>
+ <td><a href="http://gravatar.com"><img src="https://gravatar.com/avatar/{{ md5(strtolower(trim($user->email))) }}?s=40"/></a></td>
<td>{{{ $user->name }}}</td>
<td>{{{ $user->points }}}</td>
</tr>