Changeset 15393
- Timestamp:
- 07/27/11 23:09:41 (10 months ago)
- Location:
- trunk/xmlrpc
- Files:
-
- 2 edited
-
BxDolXMLRPCProfileView.php (modified) (1 diff)
-
BxDolXMLRPCSearch.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xmlrpc/BxDolXMLRPCProfileView.php
r15338 r15393 56 56 { 57 57 $sValue2 = $this->oPF->getViewableValue($aItem, $this->_aCouple[$aItem['Name']]); 58 $aStruct['Value 1'] = new xmlrpcval (strip_tags($sValue1));58 $aStruct['Value2'] = new xmlrpcval (strip_tags($sValue2)); 59 59 } 60 60 } -
trunk/xmlrpc/BxDolXMLRPCSearch.php
r15211 r15393 34 34 $r = db_res (" 35 35 SELECT * FROM `Profiles` 36 WHERE 1$sWhere36 WHERE (`Profiles`.`Couple` = 0 OR `Profiles`.`Couple` > `Profiles`.`ID`) $sWhere 37 37 ORDER BY `DateLastNav` DESC 38 38 LIMIT $iStart, $iPP"); … … 79 79 SELECT * " . $sDistance . " FROM `Profiles` 80 80 $sJoin 81 WHERE 1$sWhere81 WHERE (`Profiles`.`Couple` = 0 OR `Profiles`.`Couple` > `Profiles`.`ID`) $sWhere 82 82 ORDER BY `distance` ASC 83 83 LIMIT $iStart, $iPP"); … … 120 120 $r = db_res (" 121 121 SELECT * " . ( $sMatch ? ", $sMatch" : '') . " FROM `Profiles` 122 WHERE 1$sWhere122 WHERE (`Profiles`.`Couple` = 0 OR `Profiles`.`Couple` > `Profiles`.`ID`) $sWhere 123 123 ORDER BY `DateLastNav` DESC 124 124 LIMIT $iStart, $iPP");
Note: See TracChangeset
for help on using the changeset viewer.