Revision 1311
Added by Luisehahne over 15 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
| 14 | 14 |
01-Apr-2010 Dietmar Woellbrink (Luisehahne) |
| 15 |
# Ticket #967 Typo in the mysql-query results in "not" upgrading the modul info ( tks to Aldus) |
|
| 16 |
01-Apr-2010 Dietmar Woellbrink (Luisehahne) |
|
| 15 | 17 |
# Ticket 963 Minor XSS issue in admin login |
| 16 | 18 |
! update jquery-ui-min.js from 1.7.2 to 1.8.0 |
| 17 | 19 |
# Fixed typo in the english language file |
| 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.x');
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1310');
|
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1311');
|
|
| 56 | 56 |
|
| 57 | 57 |
?> |
| branches/2.8.x/wb/framework/functions.php | ||
|---|---|---|
| 934 | 934 |
$sql .= '`description` = "'.addslashes($module_description).'", '; |
| 935 | 935 |
$sql .= '`platform` = "'.$module_platform.'", '; |
| 936 | 936 |
$sql .= '`author` = "'.addslashes($module_author).'", '; |
| 937 |
$sql .= '`license` = "'.addslashes($module_license).'", ';
|
|
| 937 |
$sql .= '`license` = "'.addslashes($module_license).'" '; |
|
| 938 | 938 |
$sql .= 'WHERE `directory` = "'.$module_directory.'"'; |
| 939 | 939 |
$database->query($sql); |
| 940 | 940 |
// Run upgrade script |
Also available in: Unified diff
Ticket #967 Typo in the mysql-query results in "not" upgrading the modul info ( tks to Aldus)