aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mod/webpages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/webpages.php b/mod/webpages.php
index 9e885c14b..8e3901d90 100644
--- a/mod/webpages.php
+++ b/mod/webpages.php
@@ -56,7 +56,7 @@ require_once ('include/conversation.php');
//Get a list of webpages. We can't display all them because endless scroll makes that unusable, so just list titles and an edit link.
// FIXME - we should sort these results, but it's not obvious what order yet. Alphabetical? Created order?
-$r = q("select * from item_id where uid = %d and service = 'WEBPAGE'",
+$r = q("select * from item_id where uid = %d and service = 'WEBPAGE' order by sid asc",
intval($owner)
);