Changeset 629

Show
Ignore:
Timestamp:
10/09/06 12:38:06 (2 years ago)
Author:
ben
Message:

Friends and friends of pages now order by last visit to the site.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/units/friends/friends_edit.php

    r552 r629  
    99    $result = get_records_sql('SELECT u.*,f.ident AS friendident FROM '.$CFG->prefix.'friends f 
    1010                              JOIN '.$CFG->prefix.'users u ON u.ident = f.friend 
    11                               WHERE f.owner = ? AND u.user_type = ?',array($user_id,'person')); 
     11                              WHERE f.owner = ? AND u.user_type = ? order by u.last_action desc',array($user_id,'person')); 
    1212     
    1313    $body = <<< END 
  • devel/units/friends/friends_of_edit.php

    r552 r629  
    99    $result = get_records_sql('SELECT u.* FROM '.$CFG->prefix.'friends f 
    1010                               JOIN '.$CFG->prefix.'users u ON u.ident = f.owner 
    11                                WHERE friend = ? AND u.user_type = ?',array($user_id,'person')); 
     11                               WHERE friend = ? AND u.user_type = ? order by u.last_action desc',array($user_id,'person')); 
    1212    $body = <<< END 
    1313