fixed update available

This commit is contained in:
kremsy
2014-01-12 00:02:17 +01:00
committed by Steffen Schröder
parent b8758138b3
commit de96708156
3 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ class Map {
* @return bool
*/
public function updateAvailable() {
if($this->lastUpdate < $this->mx->updated || $this->uid != $this->mx->uid) {
if($this->mx != null && ($this->lastUpdate < $this->mx->updated || $this->uid != $this->mx->uid)) {
return true;
} else {
return false;

View File

@ -431,7 +431,7 @@ class MapList implements ManialinkPageAnswerListener, CallbackListener {
* @var Map $map
*/
foreach($mapList as $map) {
var_dump($map->updateAvailable());
if(!isset($pageFrame)) {
$pageFrame = new Frame();
$frame->add($pageFrame);