aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Articles.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-10-13 14:27:54 +0200
committerMario <mario@mariovavti.com>2019-10-13 14:27:54 +0200
commite7e8a2ca5f09737b27377188794d18fc992febb2 (patch)
tree267890115e46cf3e9d5ab974a35f36dc7ae046b8 /Zotlabs/Module/Articles.php
parentbef5324feafc1f12d0804a769c4dca4f8295d274 (diff)
parent5edeb0250b1fe1cb6b8e89282b661ab13025e7f0 (diff)
downloadvolse-hubzilla-e7e8a2ca5f09737b27377188794d18fc992febb2.tar.gz
volse-hubzilla-e7e8a2ca5f09737b27377188794d18fc992febb2.tar.bz2
volse-hubzilla-e7e8a2ca5f09737b27377188794d18fc992febb2.zip
Merge branch 'dev' into 'dev'
Better Opengraph markup See merge request hubzilla/core!1751
Diffstat (limited to 'Zotlabs/Module/Articles.php')
-rw-r--r--Zotlabs/Module/Articles.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/Zotlabs/Module/Articles.php b/Zotlabs/Module/Articles.php
index ca132c01e..e3ad54be8 100644
--- a/Zotlabs/Module/Articles.php
+++ b/Zotlabs/Module/Articles.php
@@ -9,6 +9,7 @@ use Zotlabs\Lib\PermissionDescription;
require_once('include/channel.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
+require_once('include/opengraph.php');
class Articles extends Controller {
@@ -192,7 +193,7 @@ class Articles extends Controller {
$parents_str = ids_to_querystr($r,'id');
- $items = q("SELECT item.*, item.id AS item_id
+ $r = q("SELECT item.*, item.id AS item_id
FROM item
WHERE item.uid = %d $item_normal
AND item.parent IN ( %s )
@@ -200,15 +201,18 @@ class Articles extends Controller {
intval(App::$profile['profile_uid']),
dbesc($parents_str)
);
- if($items) {
- xchan_query($items);
- $items = fetch_post_tags($items, true);
+ if($r) {
+ xchan_query($r);
+ $items = fetch_post_tags($r, true);
$items = conv_sort($items,'updated');
}
else
$items = [];
}
+ // Add Opengraph markup
+ opengraph_add_meta(((! empty($items)) ? $r[0] : array()), App::$profile);
+
$mode = 'articles';
if(get_pconfig(local_channel(),'system','articles_list_mode') && (! $selected_card))