1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-10-31 14:10:08 +00:00

Fix typo in RoomAddForm.class.php

This commit is contained in:
Tim Düsterhus 2015-01-10 15:44:09 +01:00
parent cf4f55d922
commit 5354913ce5

View File

@ -74,7 +74,7 @@ public function readFormParameters() {
if (I18nHandler::getInstance()->isPlainValue('title')) $this->title = I18nHandler::getInstance()->getValue('title');
if (I18nHandler::getInstance()->isPlainValue('topic')) $this->topic = I18nHandler::getInstance()->getValue('topic');
if (isset($_POST['maxUsers']) $this->maxUsers = intval($_POST['maxUsers']);
if (isset($_POST['maxUsers'])) $this->maxUsers = intval($_POST['maxUsers']);
}
/**