From fe36da64909a2ad8b7f48be5b4307ed6115ecc39 Mon Sep 17 00:00:00 2001 From: Patrick Davison Date: Thu, 28 Feb 2013 23:09:41 -0800 Subject: Chat /me and URL Linking --- ajax/chat.ajax.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ajax') diff --git a/ajax/chat.ajax.php b/ajax/chat.ajax.php index 5ac77e4..ac682a7 100644 --- a/ajax/chat.ajax.php +++ b/ajax/chat.ajax.php @@ -49,13 +49,14 @@ if ($_REQUEST['messages']) { $insertID = addchat(-1, substr($message, 5)); } } - //Anyone commands: - if ($command == 'spoiler') { + //javascript based commands: + if ($command == 'spoiler' OR $command == 'me') { $insertID = addchat($userID, $message); } + //For anyone if ($command == 'help') { $r[0]['serverMessage'] = 'true'; - $r[0]['message'] = "Commands: /help /time /spoiler . - Chat by Pathery.com"; + $r[0]['message'] = "Commands: /help /time /spoiler /me. - Chat by Pathery.com"; $r[0]['secondsSince'] = 0; $r[0]['userID'] = -1; echo json_encode($r); -- cgit v1.2.3