Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1623)
+++ branches/2.8.x/CHANGELOG	(revision 1624)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+29 Feb-2012 Build 1624 Dietmar Woellbrink (Luisehahne)
+# fixed index warning in form modul (Tks to DBS)
 29 Feb-2012 Build 1623 Dietmar Woellbrink (Luisehahne)
 # fixed FCKeditor to work in IE7/8, IE9 not tested
 ! redesign filemanager FCKeditor
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1623)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1624)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1623');
+if(!defined('REVISION')) define('REVISION', '1624');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/form/modify.php
===================================================================
--- branches/2.8.x/wb/modules/form/modify.php	(revision 1623)
+++ branches/2.8.x/wb/modules/form/modify.php	(revision 1624)
@@ -232,7 +232,8 @@
 			$sBody = $submission['body'];
 			$regex = "/[a-z0-9\-_]?[a-z0-9.\-_]+[a-z0-9\-_]?@[a-z0-9.-]+\.[a-z]{2,}/iU";
 			preg_match ($regex, $sBody, $output);
-			$submission['email'] = $output['0'];
+// workout if output is empty
+			$submission['email'] = (isset($output['0']) ? $output['0'] : '');
 ?>
 			<tr class="row_<?php echo $row; ?>">
 				<td width="20" style="padding-left: 5px;text-align: center;">
@@ -266,7 +267,7 @@
 		}
 	} else {
 ?>
-<tr><td><?php echo $TEXT['NONE_FOUND'] ?></td></tr>
+<tr><td colspan="8"><?php echo $TEXT['NONE_FOUND'] ?></td></tr>
 <?php
 	}
 ?>
Index: branches/2.8.x/wb/modules/form
===================================================================
--- branches/2.8.x/wb/modules/form	(revision 1623)
+++ branches/2.8.x/wb/modules/form	(revision 1624)

Property changes on: branches/2.8.x/wb/modules/form
___________________________________________________________________
Modified: svn:ignore
## -1,2 +1,6 ##
+Kopie von backend.js
 SimpleMailException.php
 backend.js
+formFunction.php
+links.php
+regex_1326762530txt.php
