diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-13 03:15:12 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-13 03:15:12 -0400 |
commit | 55494720e56391ee8ddc55b43307af03a4bcb4b9 (patch) | |
tree | a91f995fc8ae3d80455d329c8c5a3530e5d5882a | |
parent | 221f13a10d748b3f6f746d3d82e2aca27306c020 (diff) |
add slashes to JSON so it goes across meteor.js channel correctly
-rw-r--r-- | plugins/Meteor/MeteorPlugin.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/Meteor/MeteorPlugin.php b/plugins/Meteor/MeteorPlugin.php index eca7f627e..07285552c 100644 --- a/plugins/Meteor/MeteorPlugin.php +++ b/plugins/Meteor/MeteorPlugin.php @@ -161,6 +161,7 @@ class MeteorPlugin extends Plugin protected function _addMessage($channel, $message) { + $message = addslashes($message); $cmd = "ADDMESSAGE {$this->channelbase}{$channel} $message\n"; $cnt = fwrite($this->_socket, $cmd); $result = fgets($this->_socket); |