mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-27 07:49:27 +00:00
Fix issue.
This commit is contained in:
parent
b3d1f84e12
commit
2e877f2446
@ -239,7 +239,7 @@ class Posts {
|
|||||||
|
|
||||||
//Prepare the request on the database
|
//Prepare the request on the database
|
||||||
//Add the visibility level conditions
|
//Add the visibility level conditions
|
||||||
$conditions = "WHERE (group_id = 0 AND niveau_visibilite <= ? AND (ID_personne = ?";
|
$conditions = "WHERE ((group_id = 0 AND niveau_visibilite <= ? AND (ID_personne = ?";
|
||||||
$dataConds = array($visibilityLevel, $userID);
|
$dataConds = array($visibilityLevel, $userID);
|
||||||
|
|
||||||
//Process the list of friends of the user
|
//Process the list of friends of the user
|
||||||
@ -268,12 +268,12 @@ class Posts {
|
|||||||
|
|
||||||
//Add startpoint condition if required (and get older messages)
|
//Add startpoint condition if required (and get older messages)
|
||||||
if($startPoint != 0){
|
if($startPoint != 0){
|
||||||
$conditions .= " AND ID <= ? ";
|
$conditions .= ") AND (ID <= ? ";
|
||||||
$dataConds[] = $startPoint;
|
$dataConds[] = $startPoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Specify order and limit
|
//Specify order and limit
|
||||||
$conditions.= " ORDER BY ID DESC LIMIT ".$limit;
|
$conditions.= ") ORDER BY ID DESC LIMIT ".$limit;
|
||||||
|
|
||||||
//Perform the request
|
//Perform the request
|
||||||
$list = CS::get()->db->select(
|
$list = CS::get()->db->select(
|
||||||
|
Loading…
Reference in New Issue
Block a user