1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-12-22 21:40:08 +00:00

Use $this->objectAction to match WoltLab/WCF@635dd8c454

This commit is contained in:
Tim Düsterhus 2012-02-11 17:42:56 +01:00
parent 42f49b3e3e
commit f6ba0bfc7f
2 changed files with 5 additions and 5 deletions

View File

@ -80,12 +80,12 @@ public function save() {
parent::save(); parent::save();
// save room // save room
$chatRoomAction = new \wcf\data\chat\room\ChatRoomAction(array(), 'create', array('data' => array( $this->objectAction = new \wcf\data\chat\room\ChatRoomAction(array(), 'create', array('data' => array(
'title' => $this->title, 'title' => $this->title,
'topic' => $this->topic 'topic' => $this->topic
))); )));
$chatRoomAction->executeAction(); $this->objectAction->executeAction();
$returnValues = $chatRoomAction->getReturnValues(); $returnValues = $this->objectAction->getReturnValues();
$chatRoomEditor = new \wcf\data\chat\room\ChatRoomEditor($returnValues['returnValues']); $chatRoomEditor = new \wcf\data\chat\room\ChatRoomEditor($returnValues['returnValues']);
$roomID = $returnValues['returnValues']->roomID; $roomID = $returnValues['returnValues']->roomID;

View File

@ -82,11 +82,11 @@ public function save() {
// update room // update room
$chatRoomAction = new \wcf\data\chat\room\ChatRoomAction(array($this->roomID), 'update', array('data' => array( $this->objectAction = new \wcf\data\chat\room\ChatRoomAction(array($this->roomID), 'update', array('data' => array(
'title' => $this->title, 'title' => $this->title,
'topic' => $this->topic 'topic' => $this->topic
))); )));
$chatRoomAction->executeAction(); $this->objectAction->executeAction();
$this->saved(); $this->saved();