Sort the changelog.
This commit is contained in:
parent
56ce743994
commit
174d217f11
1 changed files with 8 additions and 0 deletions
|
@ -42,6 +42,14 @@ class DokuWikiPage extends DokuWikiNode
|
||||||
$this->ChangeLog->append($changelog);
|
$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;
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue