[dwpost] Remove references to obsolete virtual field item.tag

This commit is contained in:
Hypolite Petovan 2020-05-13 22:38:39 -04:00
parent e060931939
commit 5e39c8d2c2
1 changed files with 2 additions and 10 deletions

View File

@ -14,6 +14,7 @@ use Friendica\Core\Hook;
use Friendica\Core\Logger;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Tag;
use Friendica\Util\DateTimeFormat;
use Friendica\Util\Network;
use Friendica\Util\XML;
@ -191,7 +192,7 @@ function dwpost_send(App $a, array &$b)
$title = $b['title'];
$post = BBCode::convert($b['body']);
$post = XML::escape($post);
$tags = dwpost_get_tags($b['tag']);
$tags = Tag::getCSVByURIId($b['uri-id'], [Tag::HASHTAG]);
$date = DateTimeFormat::convert($b['created'], $tz);
$year = intval(substr($date,0,4));
@ -236,12 +237,3 @@ EOT;
Logger::log('posted to dreamwidth: ' . ($x) ? $x : '', Logger::DEBUG);
}
}
function dwpost_get_tags($post)
{
preg_match_all("/\]([^\[#]+)\[/", $post, $matches);
$tags = implode(', ', $matches[1]);
return $tags;
}