diff options
| author | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-04-12 17:23:40 -0400 |
|---|---|---|
| committer | dumpfmprod <dumpfmprod@ubuntu.(none)> | 2010-04-12 17:23:40 -0400 |
| commit | e6138a8f40e831c8ef561008992b2cb84d001414 (patch) | |
| tree | 00dc4036c6a9e2f26b167fcf4c3081d5367627a1 | |
| parent | 63b137218d6192a4e8cf43cb884090cfa700a571 (diff) | |
Moved adminmute div into if(isadmin)
| -rw-r--r-- | template/profile.st | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/template/profile.st b/template/profile.st index 1e7ee06..524ade9 100644 --- a/template/profile.st +++ b/template/profile.st @@ -31,11 +31,13 @@ <div id="profile"> <h2>$nick$</h2> - <div id="adminmute"> + $if(isadmin)$ + <div id="adminmute"> <a href="#" onclick="Admin.mute('$nick$'); return false">Mute $nick$!</a><br> + </div> $endif$ -</div> + $if(avatar)$ <img id="avatarPic" src="$avatar$" width="150px"/> $else$ |
