Project

General

Profile

« Previous | Next » 

Revision 1829

Added by Dietmar over 11 years ago

  1. bugfix check existing tables in upgrade-script

View differences:

branches/2.8.x/CHANGELOG
13 13

  
14 14

  
15 15

  
16
22 Nov-2012 Build 1829 Dietmar Woellbrink (Luisehahne)
17
# bugfix check existing tables in upgrade-script
16 18
22 Nov-2012 Build 1828 Dietmar Woellbrink (Luisehahne)
17 19
! Update Checks if a browser's user agent string is compatible with the FCKeditor.
18 20
! Set WebsiteBaker Module Version to 2.9.8
branches/2.8.x/wb/upgrade-script.php
213 213
    if($get_result->numRows() > 0)
214 214
    {
215 215
        while ($data = $get_result->fetchRow()) {
216
            $tmp = str_replace(TABLE_PREFIX, '', $data[0]);
216
            $tmp = preg_replace('/^'.preg_quote(TABLE_PREFIX, '/').'/s', '', $data[0]);
217 217
            if(in_array($tmp,$aPackage)) {
218 218
                $all_tables[] = $tmp;
219 219
            } else {
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.3');
54
if(!defined('REVISION')) define('REVISION', '1828');
54
if(!defined('REVISION')) define('REVISION', '1829');
55 55
if(!defined('SP')) define('SP', '');

Also available in: Unified diff