Commit b2cdd5f1 authored by tbrehm's avatar tbrehm
Browse files

No commit message

No commit message
parent 4b72c51b
......@@ -234,9 +234,10 @@ class installer_base {
//** Get the database version number based on the patchfiles
$found = true;
$current_db_version = 1;
while($found == true) {
$next_db_version = intval($current_db_version + 1);
$patch_filename = realpath(dirname(__FILE__).'/../../').'/sql/incremental/upd_'.str_pad($next_db_version, 4, '0', STR_PAD_LEFT).'.sql';
$patch_filename = realpath(dirname(__FILE__).'/../').'/sql/incremental/upd_'.str_pad($next_db_version, 4, '0', STR_PAD_LEFT).'.sql';
if(is_file($patch_filename)) {
$current_db_version = $next_db_version;
} else {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment