Changeset 996 for trunk/classes/actions/ActionTalk.class.php
- Timestamp:
- 08/21/10 20:31:41 (21 months ago)
- Files:
-
- 1 modified
-
trunk/classes/actions/ActionTalk.class.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/actions/ActionTalk.class.php
r891 r996 420 420 */ 421 421 protected function AjaxResponseComment() { 422 $this->Viewer_SetResponseAjax( );422 $this->Viewer_SetResponseAjax('json'); 423 423 $idCommentLast=getRequest('idCommentLast'); 424 424 /** … … 471 471 */ 472 472 protected function AjaxAddComment() { 473 $this->Viewer_SetResponseAjax( );473 $this->Viewer_SetResponseAjax('json'); 474 474 $this->SubmitComment(); 475 475 } … … 595 595 */ 596 596 public function AjaxAddToBlacklist() { 597 $this->Viewer_SetResponseAjax( );597 $this->Viewer_SetResponseAjax('json'); 598 598 $sUsers=getRequest('users',null,'post'); 599 599 … … 678 678 */ 679 679 public function AjaxDeleteFromBlacklist() { 680 $this->Viewer_SetResponseAjax( );680 $this->Viewer_SetResponseAjax('json'); 681 681 $idTarget=getRequest('idTarget',null,'post'); 682 682 … … 738 738 */ 739 739 public function AjaxDeleteTalkUser() { 740 $this->Viewer_SetResponseAjax( );740 $this->Viewer_SetResponseAjax('json'); 741 741 $idTarget=getRequest('idTarget',null,'post'); 742 742 $idTalk=getRequest('idTalk',null,'post'); … … 814 814 */ 815 815 public function AjaxAddTalkUser() { 816 $this->Viewer_SetResponseAjax( );816 $this->Viewer_SetResponseAjax('json'); 817 817 $sUsers=getRequest('users',null,'post'); 818 818 $idTalk=getRequest('idTalk',null,'post');
