From 4fcae32a81b9f0d3b1ab2662b4bbeaac998e5afe Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 3 Feb 2016 13:00:30 +0100 Subject: [PATCH] fixed gallery undefined length error --- saimod_webcraft_gallery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saimod_webcraft_gallery.php b/saimod_webcraft_gallery.php index 24730f9..492c709 100644 --- a/saimod_webcraft_gallery.php +++ b/saimod_webcraft_gallery.php @@ -17,7 +17,7 @@ class saimod_webcraft_gallery extends \SYSTEM\SAI\SaiModule { $result = ''; while($img = $gallery->next()){ $result .= '';} - $result .= ''; + $result .= ''; return $result; }