Small bugfix for likes
This commit is contained in:
parent
3b9a8daeeb
commit
027b11ebb5
|
@ -18,7 +18,7 @@ function diaspora2bb($s) {
|
|||
$s = html_entity_decode($s,ENT_COMPAT,'UTF-8');
|
||||
|
||||
// Remove CR to avoid problems with following code
|
||||
//$s = str_replace("\r","",$s);
|
||||
$s = str_replace("\r","",$s);
|
||||
|
||||
$s = str_replace("\n"," \n",$s);
|
||||
|
||||
|
|
|
@ -708,7 +708,7 @@ die("ss");
|
|||
if (!get_config("system", "like_no_comment"))
|
||||
$sql_extra4 = "(`item`.`deleted` = 0 OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."')";
|
||||
else
|
||||
$sql_extra4 = "`item`.`deleted` = 0";
|
||||
$sql_extra4 = "`item`.`deleted` = 0 AND `item`.`verb` = '".ACTIVITY_POST."'";
|
||||
|
||||
$r = q("SELECT `item`.`parent` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
|
||||
FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
||||
|
|
Loading…
Reference in a new issue