Revision 535
Added by doc almost 18 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
| 14 | 14 |
13-Jan-2008 Christian Sommer |
| 15 |
! changed admin/login/template.html HOME link to WB_URL |
|
| 16 |
! increased redirection time after success message |
|
| 15 |
# this bugfix closes the ticket 529 (WB upgrades modules with identical version) |
|
| 17 | 16 |
|
| 18 | 17 |
13-Jan-2008 Christian Sommer |
| 18 |
! increased redirection time after success message, corrected HOME link of the login panel |
|
| 19 |
|
|
| 20 |
13-Jan-2008 Christian Sommer |
|
| 19 | 21 |
! updated PHPMailer framework to version 2.0.0 (/include/phpmailer) |
| 20 | 22 |
|
| 21 | 23 |
13-Jan-2008 Christian Sommer |
| trunk/wb/admin/modules/install.php | ||
|---|---|---|
| 76 | 76 |
if(file_exists(WB_PATH.'/modules/'.$module_directory.'/info.php')) {
|
| 77 | 77 |
require(WB_PATH.'/modules/'.$module_directory.'/info.php'); |
| 78 | 78 |
// Version to be installed is older than currently installed version |
| 79 |
if ($module_version>$new_module_version) {
|
|
| 79 |
if ($module_version>=$new_module_version) {
|
|
| 80 | 80 |
if(file_exists($temp_file)) { unlink($temp_file); } // Remove temp file
|
| 81 | 81 |
$admin->print_error($MESSAGE['GENERIC']['ALREADY_INSTALLED']); |
| 82 | 82 |
} |
Also available in: Unified diff
Bug fix for ticket 525. Prevents that installed modules with identical version are updated again.