Skip to content

Commit a2b56e8

Browse files
committed
Make sure where applying strtolower on the users email on the frontend as well.
1 parent 7654d36 commit a2b56e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/themes/pterodactyl/layouts/master.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<ul class="nav navbar-nav">
5959
<li class="dropdown user-menu">
6060
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
61-
<img src="https://www.gravatar.com/avatar/{{ md5(Auth::user()->email) }}?s=160" class="user-image" alt="User Image">
61+
<img src="https://www.gravatar.com/avatar/{{ md5(strtolower(Auth::user()->email)) }}?s=160" class="user-image" alt="User Image">
6262
<span class="hidden-xs">{{ Auth::user()->name_first }} {{ Auth::user()->name_last }}</span> <span class="caret"></span>
6363
</a>
6464
<ul class="dropdown-menu" role="menu">

0 commit comments

Comments
 (0)