Revision 1232
Added by Dietmar almost 15 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.1 ------------------------------------- |
14 |
30-Dec-2009 Dietmar Woellbrink (Luisehahne) |
|
15 |
# fix Warning: stristr() [function.stristr] |
|
14 | 16 |
29-Dec-2009 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
! set revision constant to release version |
16 | 18 |
29-Dec-2009 Dietmar Woellbrink (Luisehahne) |
branches/2.8.x/wb/upgrade-script.php | ||
---|---|---|
225 | 225 |
$OK = '<span class="ok">OK</span>'; |
226 | 226 |
$FAIL = '<span class="error">FAILED</span>'; |
227 | 227 |
$check_text = 'total '; |
228 |
$check_tables = mysqlCheckTables( DB_NAME ) ; |
|
229 |
if(sizeof($check_tables) == 22)
|
|
228 |
// $check_tables = mysqlCheckTables( DB_NAME ) ;
|
|
229 |
if(sizeof($all_tables) == 22)
|
|
230 | 230 |
{ |
231 |
echo '<h4>NOTICE: Your database '.DB_NAME.' has '.sizeof($check_tables).' '.$check_text.' tables from 22 included in package</h4>';
|
|
231 |
echo '<h4>NOTICE: Your database '.DB_NAME.' has '.sizeof($all_tables).' '.$check_text.' tables from '.sizeof($table_list).' included in package</h4>';
|
|
232 | 232 |
} |
233 | 233 |
else |
234 | 234 |
{ |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
4 | 4 |
* |
5 | 5 |
* $Id: version.php 1230 2009-12-28 23:34:48Z Luisehahne $ |
6 | 6 |
* |
7 |
* $Revision$ |
|
8 | 7 |
* |
8 |
* |
|
9 | 9 |
***************************************************************************** |
10 | 10 |
* WebsiteBaker |
11 | 11 |
* |
... | ... | |
70 | 70 |
|
71 | 71 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
72 | 72 |
if(!defined('VERSION')) define('VERSION', '2.8.1'); |
73 |
if(!defined('REVISION')) define('REVISION', '1231');
|
|
73 |
if(!defined('REVISION')) define('REVISION', '1232');
|
|
74 | 74 |
|
75 | 75 |
?> |
76 | 76 |
Also available in: Unified diff
fix Warning: stristr() [function.stristr]