diff options
| author | sostler <sbostler@gmail.com> | 2010-01-12 00:18:16 -0500 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2010-01-12 00:18:16 -0500 |
| commit | 7aa611019b6adb1bce5fd83c1ad90de406f6ea85 (patch) | |
| tree | 505a095f6174d6eff7a7db243af6f2bc718263e6 | |
| parent | 5d324fedf708a9726dcbc5aa23dd5e455accfb6d (diff) | |
fixed template bug
| -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 437f682..5c97275 100755 --- a/template/chat.st +++ b/template/chat.st @@ -7,9 +7,9 @@ jQuery(document).ready(initChat); var Nick = $json_user_nick$; var Room = $json_room_key$; - var IsAdmin = $if(isadmin)$true$elseif$false$endif$; var Timestamp = $timestamp$; var PostedMessages = []; + var IsAdmin = $if(isadmin)$ true $else$ false $endif$ </script> $if(isadminroom)$ |
