Revision 1336
Added by Luisehahne almost 15 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
14 | 14 |
27-Apr-2010 Dietmar Woellbrink (Luisehahne) |
15 |
! remove forgotten debug line |
|
16 |
27-Apr-2010 Dietmar Woellbrink (Luisehahne) |
|
15 | 17 |
# Fixed update search settings |
16 | 18 |
# Fixed bug in /modules/admin.php |
17 | 19 |
22-Apr-2010 Dietmar Woellbrink (Luisehahne) |
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', '1335');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1336');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/admin/settings/save.php | ||
---|---|---|
194 | 194 |
$sql .= 'WHERE `name` = "'.$setting_name.'" '; |
195 | 195 |
$sql .= 'AND `extra` = ""'; |
196 | 196 |
if($database->query($sql)) { |
197 |
$sql_info = mysql_info($database->db_handle); |
|
198 | 197 |
} |
199 |
if($database->is_error()) { |
|
200 |
$admin->print_error($database->get_error, ADMIN_URL.'/settings/index.php'.$advanced); |
|
201 |
} |
|
198 |
$sql_info = mysql_info($database->db_handle); |
|
202 | 199 |
} |
203 | 200 |
} |
204 | 201 |
|
Also available in: Unified diff
remove forgotten debug line