social 0.14.4:

This commit is contained in:
onli 2021-04-09 08:33:06 +02:00
parent ca025664f9
commit 99e9e5a1cf
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,7 @@
0.14.4
* Prevent possible error when some articles could not
print opengraph elements
0.14.3
* Correct link to shariff backend in option
description

View file

@ -16,7 +16,7 @@ class serendipity_event_social extends serendipity_event {
$propbag->add('description', PLUGIN_EVENT_SOCIAL_DESC);
$propbag->add('stackable', false);
$propbag->add('author', 'onli, Matthias Mees, Thomas Hochstein');
$propbag->add('version', '0.14.3');
$propbag->add('version', '0.14.4');
$propbag->add('requirements', array(
'serendipity' => '2.0'
));
@ -182,7 +182,11 @@ class serendipity_event_social extends serendipity_event {
if (strpos($this->get_config('services'), 'facebook') !== false || strpos($this->get_config('services'), 'twitter') !== false) {
// we iterate over the internal smarty object to see which entry we are printing. This is hacky and should be improved
$entry = (current($eventData['smarty']->tpl_vars['entries']->value)['entries'][0]);
if ($eventData['smarty']->tpl_vars['entries']->value != null) {
$entry = (current($eventData['smarty']->tpl_vars['entries']->value)['entries'][0]);
} else {
return true;
}
$blogURL = 'http' . ($_SERVER['HTTPS'] ? 's' : '') . '://' . $_SERVER['HTTP_HOST'];