Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1593)
+++ branches/2.8.x/CHANGELOG	(revision 1594)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+03 Feb-2012 Build 1594 Dietmar Woellbrink (Luisehahne)
+# fixed use of undefined constant fri in /form/view.php
 01 Feb-2012 Build 1593 Dietmar Woellbrink (Luisehahne)
 # rebuild protectfile in pages/posts
 31 Jan-2012 Build 1592 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1593)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1594)
@@ -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.2');
-if(!defined('REVISION')) define('REVISION', '1593');
+if(!defined('REVISION')) define('REVISION', '1594');
 if(!defined('SP')) define('SP', 'SP2');
Index: branches/2.8.x/wb/modules/form/view.php
===================================================================
--- branches/2.8.x/wb/modules/form/view.php	(revision 1593)
+++ branches/2.8.x/wb/modules/form/view.php	(revision 1594)
@@ -429,7 +429,7 @@
 					} else {
 						// Adding the IP to the body and try to send the email
 						// $email_body .= "\n\nIP: ".$_SERVER['REMOTE_ADDR'];
-						$iFormRequestId = isset($_POST[fri]) ? intval($_POST['fri']) : 0;
+						$iFormRequestId = isset($_POST['fri']) ? intval($_POST['fri']) : 0;
 						if($iFormRequestId) {
 							$email_body .= "\n\nFormRequestID: ".$iFormRequestId;
 						}
