aboutsummaryrefslogtreecommitdiffstats
path: root/mod/channel.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-01 14:52:08 -0800
committerredmatrix <git@macgirvin.com>2016-02-01 14:52:08 -0800
commitff487a02710c2a4833c78e0b015465810c3a7987 (patch)
tree9330f616788c213593f5b868f1bf878ba8077b06 /mod/channel.php
parent01b5b1347521951ca78b1718b03c45897800bf5e (diff)
downloadvolse-hubzilla-ff487a02710c2a4833c78e0b015465810c3a7987.tar.gz
volse-hubzilla-ff487a02710c2a4833c78e0b015465810c3a7987.tar.bz2
volse-hubzilla-ff487a02710c2a4833c78e0b015465810c3a7987.zip
more oembed provider work - channel articles
Diffstat (limited to 'mod/channel.php')
-rw-r--r--mod/channel.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php
index 3b80e2cb8..f88a5bf45 100644
--- a/mod/channel.php
+++ b/mod/channel.php
@@ -156,7 +156,11 @@ function channel_content(&$a, $update = 0, $load = false) {
$abook_uids = " and abook.abook_channel = " . intval($a->profile['profile_uid']) . " ";
$simple_update = (($update) ? " AND item_unseen = 1 " : '');
-
+
+ if($mid) {
+ $a->page['htmlhead'] .= "\r\n" . '<link rel="alternate" type="application/json+oembed" href="' . z_root() . '/oep?f=&url=' . urlencode(z_root() . '/' . $a->query_string) . '" title="oembed" />' . "\r\n";
+ }
+
if($update && $_SESSION['loadtime'])
$simple_update = " AND (( item_unseen = 1 AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) OR item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) ";
if($load)