Index: /lib/filter_functions.inc.php
===================================================================
--- /lib/filter_functions.inc.php	(revision 6527)
+++ /lib/filter_functions.inc.php	(revision 6528)
@@ -42,19 +42,24 @@
         {
 
-            $arBanner = $wpsg_update_data['updateData']->banner;
-
-            if (wpsg_isSizedArray($arBanner))
-            {
-
-                foreach ($arBanner as $b)
-                {
-
-                    echo '<div class="wpsg_banner '.$b['class'].'">';
-                    echo $b['content'];
-                    echo '</div>';
-
-                }
-
-            }
+			if (property_exists($wpsg_update_data['updateData'], 'banner'))
+			{
+            
+				$arBanner = $wpsg_update_data['updateData']->banner;
+
+				if (wpsg_isSizedArray($arBanner))
+				{
+	
+					foreach ($arBanner as $b)
+					{
+	
+						echo '<div class="wpsg_banner '.$b['class'].'">';
+						echo $b['content'];
+						echo '</div>';
+	
+					}
+	
+				}
+				
+			}
 
         } 
