diff options
author | Thomas Willingham <founder@kakste.com> | 2013-08-09 19:56:36 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-08-09 19:56:36 +0100 |
commit | 4ac5348b3f7cecceee62d92f53df0f4ab6c22074 (patch) | |
tree | d65593407b7c351f274ed58e74b347a8d4274986 /mod/webpages.php | |
parent | b161d4073def64abf0b2c8d61a19f5f7a6673380 (diff) | |
download | volse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.tar.gz volse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.tar.bz2 volse-hubzilla-4ac5348b3f7cecceee62d92f53df0f4ab6c22074.zip |
Small improvement
Diffstat (limited to 'mod/webpages.php')
-rw-r--r-- | mod/webpages.php | 2 |
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) ); |