Fixed "syntax error, unexpected '['" bug under PHP 5.3, reported here: https://forum.flatpress.org/viewtopic.php?f=2&t=131

This commit is contained in:
azett 2020-04-15 14:46:55 +02:00
parent 50c11928f6
commit 622a0d80b9

View File

@ -183,7 +183,8 @@ function smarty_block_draft($params, $content, &$smarty, &$repeat) {
if ($arr) {
$firstElement = utils_array_kshift($arr);
$id = array_keys($firstElement);
$subject = $firstElement [$id [0]];
$id = $id [0];
$subject = $firstElement [$id];
}
if ($id) {