Revision 1594
Added by Luisehahne almost 14 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
=========================== add small Features 2.8.2 ========================== |
| 14 |
03 Feb-2012 Build 1594 Dietmar Woellbrink (Luisehahne) |
|
| 15 |
# fixed use of undefined constant fri in /form/view.php |
|
| 14 | 16 |
01 Feb-2012 Build 1593 Dietmar Woellbrink (Luisehahne) |
| 15 | 17 |
# rebuild protectfile in pages/posts |
| 16 | 18 |
31 Jan-2012 Build 1592 Werner v.d.Decken(DarkViper) |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 51 | 51 |
|
| 52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.2');
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1593');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1594');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', 'SP2');
|
| branches/2.8.x/wb/modules/form/view.php | ||
|---|---|---|
| 429 | 429 |
} else {
|
| 430 | 430 |
// Adding the IP to the body and try to send the email |
| 431 | 431 |
// $email_body .= "\n\nIP: ".$_SERVER['REMOTE_ADDR']; |
| 432 |
$iFormRequestId = isset($_POST[fri]) ? intval($_POST['fri']) : 0;
|
|
| 432 |
$iFormRequestId = isset($_POST['fri']) ? intval($_POST['fri']) : 0;
|
|
| 433 | 433 |
if($iFormRequestId) {
|
| 434 | 434 |
$email_body .= "\n\nFormRequestID: ".$iFormRequestId; |
| 435 | 435 |
} |
Also available in: Unified diff
fixed use of undefined constant fri in /form/view.php