aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-08-09 19:56:36 +0100
committerThomas Willingham <founder@kakste.com>2013-08-09 19:56:36 +0100
commit4ac5348b3f7cecceee62d92f53df0f4ab6c22074 (patch)
treed65593407b7c351f274ed58e74b347a8d4274986
parentb161d4073def64abf0b2c8d61a19f5f7a6673380 (diff)
downloadvolse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.tar.gz
volse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.tar.bz2
volse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.zip
Small improvement
-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)
);