Minor changes

Sort pages natural, so numbers are in correct order, e.g. 10 is after 9
This commit is contained in:
bergware
2018-03-09 09:25:34 +01:00
parent 52c17c588c
commit 2c04699163
+1 -1
View File
@@ -61,7 +61,7 @@ function find_pages($item) {
$menu = strtok(' ');
}
}
ksort($pages);
ksort($pages,SORT_NATURAL);
return $pages;
}