diff options
author | Friendika <info@friendika.com> | 2011-03-27 19:59:27 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-27 19:59:27 -0700 |
commit | b57214cb783ca2f741760a2ccfbd01babfbd165b (patch) | |
tree | d3980132ab2e6765e0116402ad165303538ee39e | |
parent | c962f5c4bcc26fa7bad98a714cdb5e92b6acb57c (diff) | |
download | volse-hubzilla-b57214cb783ca2f741760a2ccfbd01babfbd165b.tar.gz volse-hubzilla-b57214cb783ca2f741760a2ccfbd01babfbd165b.tar.bz2 volse-hubzilla-b57214cb783ca2f741760a2ccfbd01babfbd165b.zip |
wrong date order profile page
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index 9544512ba..8fb483007 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -260,7 +260,7 @@ function profile_content(&$a, $update = 0) { AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1 $sql_extra - LIMIT %d ,%d ", + ORDER BY `item`.`created` DESC LIMIT %d ,%d ", intval($a->profile['profile_uid']), intval($a->pager['start']), intval($a->pager['itemspage']) |