social 0.14.5: Fix warning in preview with PHP 8 about missing key

This commit is contained in:
onli 2021-09-12 14:01:07 +02:00
parent 0c9c1af069
commit e5f4f0b15a
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
0.14.5
* Avoid warning situation in entry preview with PHP 8
0.14.4
* Prevent possible error when some articles could not
print opengraph elements

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.4');
$propbag->add('version', '0.14.5');
$propbag->add('requirements', array(
'serendipity' => '2.0'
));
@ -133,7 +133,7 @@ class serendipity_event_social extends serendipity_event {
if (isset($hooks[$event])) {
switch($event) {
case 'frontend_display:html:per_entry':
if ($serendipity['view'] != 'entry') {
if ($serendipity['view'] ?? '' != 'entry') {
if (! serendipity_db_bool($this->get_config('overview', true))) {
// We are in overview mode and the user opted to not show the button
return true;