Compare commits

..

No commits in common. "master" and "0.2.2" have entirely different histories.

2 changed files with 0 additions and 15 deletions

View file

@ -83,13 +83,6 @@ abstract class DokuWikiNode
return $this->name;
}
/**
* @return DokuWikiNameSpace
*/
public function getParent() {
return $this->parent;
}
/**
* @param $filename
* @param null $parent

View file

@ -42,14 +42,6 @@ class DokuWikiPage extends DokuWikiNode
$this->ChangeLog->append($changelog);
}
}
if ($this->ChangeLog->count() > 0) {
$this->ChangeLog->uasort(function(DokuWikiChangeset $a, DokuWikiChangeset $b){
if ($a->getDate() == $b->getDate()) {
return 0;
}
return ($a->getDate() > $b->getDate()) ? -1 : 1;
});
}
}
}