summaryrefslogtreecommitdiff
path: root/inc/changelog.php
diff options
context:
space:
mode:
authorGerrit Uitslag <klapinklapin@gmail.com>2014-02-15 20:41:09 +0100
committerGerrit Uitslag <klapinklapin@gmail.com>2014-02-15 20:41:09 +0100
commit2e608c527514d5fb03eb88c8da1c101f231d5736 (patch)
tree4fd14dc47249c20c8f25e37fc5495b8aabd8995c /inc/changelog.php
parent7f92538e7173852561b0396626dd35783550ed92 (diff)
downloadrpg-2e608c527514d5fb03eb88c8da1c101f231d5736.tar.gz
rpg-2e608c527514d5fb03eb88c8da1c101f231d5736.tar.bz2
reverse revisions display order
Diffstat (limited to 'inc/changelog.php')
-rw-r--r--inc/changelog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/changelog.php b/inc/changelog.php
index dfcd1f241..d2ad23c08 100644
--- a/inc/changelog.php
+++ b/inc/changelog.php
@@ -689,7 +689,7 @@ abstract class ChangeLog {
$revs1 = array_slice($revs1, max($index - floor($max/2), 0), $max);
}
- return array($revs1, $revs2);
+ return array(array_reverse($revs1), array_reverse($revs2));
}
/**