diff options
Diffstat (limited to 'ajax/chat.ajax.php')
-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;
}
|