diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-18 23:29:31 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-18 23:29:31 -0800 |
commit | 895690e7e54079851d534bea2b35a25840434ac7 (patch) | |
tree | 0759ec35c368ce965380860153ac744482c299dd /ajax | |
parent | 05b682c22f2dadf483b8a2842b4065acc34872af (diff) | |
download | pathery-895690e7e54079851d534bea2b35a25840434ac7.tar.xz |
More chat fixes
Diffstat (limited to 'ajax')
-rw-r--r-- | ajax/chat.ajax.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ajax/chat.ajax.php b/ajax/chat.ajax.php index 55f7718..1cbd6be 100644 --- a/ajax/chat.ajax.php +++ b/ajax/chat.ajax.php @@ -20,7 +20,7 @@ if ($_REQUEST['messages']) { $r[0]['message'] = 'You have been muted; You are muted until '.$date." (The current time is: ".date("Y-m-d H:i:s").")";
$r[0]['secondsSince'] = 0;
$r[0]['displayName'] = 'SERVER';
- $r[0]['ID'] = -1;
+ $r[0]['userID'] = -1;
echo json_encode($r);
exit;
}
|