like comments
This commit is contained in:
parent
7614d35cad
commit
22ca358a8c
|
@ -549,13 +549,13 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
|
||||||
$shareable = ((($profile_owner == local_user()) && ((! $item['private']) || $item['network'] === NETWORK_FEED)) ? true : false);
|
$shareable = ((($profile_owner == local_user()) && ((! $item['private']) || $item['network'] === NETWORK_FEED)) ? true : false);
|
||||||
|
|
||||||
if($page_writeable) {
|
if($page_writeable) {
|
||||||
if($toplevelpost) {
|
/* if($toplevelpost) { */
|
||||||
$likebuttons = array(
|
$likebuttons = array(
|
||||||
'like' => array( t("I like this \x28toggle\x29"), t("like")),
|
'like' => array( t("I like this \x28toggle\x29"), t("like")),
|
||||||
'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")),
|
'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")),
|
||||||
);
|
);
|
||||||
if ($shareable) $likebuttons['share'] = array( t('Share this'), t('share'));
|
if ($shareable) $likebuttons['share'] = array( t('Share this'), t('share'));
|
||||||
}
|
/* } */
|
||||||
|
|
||||||
$qc = $qcomment = null;
|
$qc = $qcomment = null;
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ function like_content(&$a) {
|
||||||
logger('like: verb ' . $verb . ' item ' . $item_id);
|
logger('like: verb ' . $verb . ' item ' . $item_id);
|
||||||
|
|
||||||
|
|
||||||
$r = q("SELECT * FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s') AND `id` = `parent` LIMIT 1",
|
$r = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
|
||||||
dbesc($item_id),
|
dbesc($item_id),
|
||||||
dbesc($item_id)
|
dbesc($item_id)
|
||||||
);
|
);
|
||||||
|
@ -217,6 +217,7 @@ EOT;
|
||||||
$arr['gravity'] = GRAVITY_LIKE;
|
$arr['gravity'] = GRAVITY_LIKE;
|
||||||
$arr['parent'] = $item['id'];
|
$arr['parent'] = $item['id'];
|
||||||
$arr['parent-uri'] = $item['uri'];
|
$arr['parent-uri'] = $item['uri'];
|
||||||
|
$arr['thr-parent'] = $item['uri'];
|
||||||
$arr['owner-name'] = $remote_owner['name'];
|
$arr['owner-name'] = $remote_owner['name'];
|
||||||
$arr['owner-link'] = $remote_owner['url'];
|
$arr['owner-link'] = $remote_owner['url'];
|
||||||
$arr['owner-avatar'] = $remote_owner['thumb'];
|
$arr['owner-avatar'] = $remote_owner['thumb'];
|
||||||
|
|
Loading…
Reference in a new issue