Revision 1466
Added by Dietmar over 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------ |
14 | 14 |
01 Jul-2011 Build 1465 Dietmar Woellbrink (Luisehahne) |
15 |
# fix form modul (tks to our Tester) |
|
16 |
01 Jul-2011 Build 1465 Dietmar Woellbrink (Luisehahne) |
|
15 | 17 |
# bugfix in initialize including SecureForm |
16 | 18 |
! update admintools FTAN handling |
17 | 19 |
01 Jul-2011 Build 1464 Werner v.d.Decken(DarkViper) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
52 | 52 |
|
53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC6'); |
55 |
if(!defined('REVISION')) define('REVISION', '1465');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1466');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/modules/form/view_submission.php | ||
---|---|---|
20 | 20 |
|
21 | 21 |
// Include WB admin wrapper script |
22 | 22 |
require(WB_PATH.'/modules/admin.php'); |
23 |
/* |
|
23 |
/* */
|
|
24 | 24 |
// Get id |
25 | 25 |
$submission_id = $admin->checkIDKEY('submission_id', false, 'GET'); |
26 | 26 |
if (!$submission_id) { |
27 | 27 |
$admin->print_error($MESSAGE['GENERIC_SECURITY_ACCESS'], ADMIN_URL.'/pages/modify.php?page_id='.$page_id); |
28 | 28 |
} |
29 |
*/ |
|
29 |
|
|
30 | 30 |
// Get submission details |
31 | 31 |
$query_content = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_form_submissions WHERE submission_id = '$submission_id'"); |
32 | 32 |
$submission = $query_content->fetchRow(); |
Also available in: Unified diff
fix form modul (tks to our Tester)