HomeHelpTrac

Ignore:
Timestamp:
04/06/09 01:55:00 (3 years ago)
Author:
Andrey Prikaznov
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xmlrpc/BxDolXMLRPCUtil.php

    r9965 r9967  
    3434 
    3535        // friends 1 
    36         $r = db_res ("SELECT `p`.`ID`, `p`.`NickName` AS `Nick` FROM `FriendList` AS `fr` 
     36        $r = db_res ("SELECT `p`.`ID`, `p`.`NickName` AS `Nick` FROM `sys_friend_list` AS `fr` 
    3737            LEFT JOIN `Profiles` AS `p` ON (`p`.`ID` = `fr`.`Profile`) 
    3838            WHERE `fr`.`ID` = '$iId' AND `fr`.`Profile` != $iId AND `fr`.`Check` = '1'"); 
     
    4141 
    4242        // friends 2 
    43         $r = db_res ("SELECT `p`.`ID`, `p`.`NickName` AS `Nick` FROM `FriendList` AS `fr` 
     43        $r = db_res ("SELECT `p`.`ID`, `p`.`NickName` AS `Nick` FROM `sys_friend_list` AS `fr` 
    4444            LEFT JOIN `Profiles` AS `p` ON (`p`.`ID` = `fr`.`ID`) 
    4545            WHERE `fr`.`Profile` = '$iId' AND `fr`.`ID` != $iId AND `fr`.`Check` = '1'"); 
Note: See TracChangeset for help on using the changeset viewer.