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

Fixing ChatPageMenuItemProvider

This commit is contained in:
Tim Düsterhus 2012-09-07 22:32:42 +02:00
parent 88525e69bf
commit ec0154e3a4

View File

@ -23,21 +23,15 @@ public function isVisible() {
// guests are not supported // guests are not supported
if (!\wcf\system\WCF::getUser()->userID) return false; if (!\wcf\system\WCF::getUser()->userID) return false;
try {
$cache = ChatRoom::getCache(); $cache = ChatRoom::getCache();
$i = 0;
do {
$cache->seek($i++);
$this->room = $cache->current();
}
while (!$this->room->canEnter());
foreach ($cache as $this->room) {
if ($this->room->canEnter()) {
return true; return true;
} }
catch (\OutOfBoundsException $e) {
return false;
} }
return false;
} }
/** /**