diff options
| author | sostler <sbostler@gmail.com> | 2010-01-12 00:14:29 -0500 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-01-12 00:14:29 -0500 |
| commit | 5d324fedf708a9726dcbc5aa23dd5e455accfb6d (patch) | |
| tree | 4b904b6b003cb83940966428069d3155e5874a56 | |
| parent | 948d38e971712ddffeb29e794d436a3202fb54e2 (diff) | |
fixed is_admin
| -rwxr-xr-x | template/chat.st | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/chat.st b/template/chat.st index d7ae38b..437f682 100755 --- a/template/chat.st +++ b/template/chat.st @@ -7,7 +7,7 @@ jQuery(document).ready(initChat); var Nick = $json_user_nick$; var Room = $json_room_key$; - var IsAdmin = $isadmin$; + var IsAdmin = $if(isadmin)$true$elseif$false$endif$; var Timestamp = $timestamp$; var PostedMessages = []; </script> |
