Fix bug in function card_class_base

This commit is contained in:
sparkyx 2006-08-08 20:51:45 +00:00
parent 53bc4dabea
commit adfcbf717b
2 changed files with 31 additions and 0 deletions

View file

@ -467,6 +467,9 @@ if ( DEBUG=='false' ) ob_start();
ExecuteScript($db,'sql/patch/upgrade15.sql');
} // version
if ( GetVersion($db) == 16 ) {
ExecuteScript($db,'sql/patch/upgrade16.sql');
} // version
if ( DEBUG == 'false') ob_end_clean();
}//for
@ -547,6 +550,9 @@ if (DEBUG == 'false' ) ob_start();
if ( GetVersion($db) == 15 ) {
ExecuteScript($db,'sql/patch/upgrade15.sql');
} // version
if ( GetVersion($db) == 16 ) {
ExecuteScript($db,'sql/patch/upgrade16.sql');
} // version
if ( DEBUG == 'false') ob_end_clean();
}