fromgplus: Add keywords to imported posts

pull/382/head
Michael Vogel 2016-03-12 07:42:57 +01:00
parent f0310f6275
commit b3eb963a2b
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,7 @@
define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
require_once('mod/share.php');
require_once('mod/parse_url.php');
function fromgplus_install() {
register_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
@ -323,6 +324,11 @@ function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) {
if ($quote != "")
$pagedata["text"] = $quote;
// Add Keywords to page link
$data = parseurl_getsiteinfo_cached($pagedata["url"], true);
if (isset($data["keywords"]))
$pagedata["keywords"] = $data["keywords"];
break;
case "photo":