diff --git a/www/selectsource.php b/www/selectsource.php index 7ff2b11e47f16085c76bd1f57be8da2d42a6eda3..d259616c2d71c0e4631dfc0d656267d0c33f6084 100644 --- a/www/selectsource.php +++ b/www/selectsource.php @@ -151,10 +151,10 @@ if (!empty($wayfConfig['footer']['format']) && $wayfConfig['footer']['format'] = foreach ($wayfConfig['footer']['sections'] as $key => $value) { if (is_array($value)) { foreach ($wayfConfig['footer']['sections'][$key] as $subKey => $subValue) { - $wayfConfig['footer']['sections'][$key][$subKey] = $converter->convertToHtml($subValue); + $wayfConfig['footer']['sections'][$key][$subKey] = $converter->convertToHtml($subValue)->getContent(); } } else { - $wayfConfig['footer']['sections'][$key] = $converter->convertToHtml($value); + $wayfConfig['footer']['sections'][$key] = $converter->convertToHtml($value)->getContent(); } } }