mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-12-22 21:40:08 +00:00
Fixing one problem with null
This commit is contained in:
parent
730dbd7770
commit
d8c8ee2f5d
@ -85,7 +85,9 @@ public function updatePosition() {
|
|||||||
$i = 0;
|
$i = 0;
|
||||||
WCF::getDB()->beginTransaction();
|
WCF::getDB()->beginTransaction();
|
||||||
foreach ($this->parameters['data']['structure'][0] as $roomID) {
|
foreach ($this->parameters['data']['structure'][0] as $roomID) {
|
||||||
$editor = new ChatRoomEditor($roomList->search($roomID));
|
$room = $roomList->search($roomID);
|
||||||
|
if ($room === null) continue;
|
||||||
|
$editor = new ChatRoomEditor($room);
|
||||||
$editor->update(array('position' => $i++));
|
$editor->update(array('position' => $i++));
|
||||||
}
|
}
|
||||||
WCF::getDB()->commitTransaction();
|
WCF::getDB()->commitTransaction();
|
||||||
|
Loading…
Reference in New Issue
Block a user