diff --git a/html/admin/setup.php b/html/admin/setup.php index d108226cd..dad9cd14c 100644 --- a/html/admin/setup.php +++ b/html/admin/setup.php @@ -503,6 +503,9 @@ if ( DEBUG=='false' ) ob_start(); if ( GetVersion($db) == 26 ) { ExecuteScript($db,'sql/patch/upgrade26.sql'); } // version + if ( GetVersion($db) == 27 ) { + ExecuteScript($db,'sql/patch/upgrade27.sql'); + } // version if ( DEBUG == 'false') ob_end_clean(); }//for @@ -619,6 +622,9 @@ if (DEBUG == 'false' ) ob_start(); if ( GetVersion($db) == 26 ) { ExecuteScript($db,'sql/patch/upgrade26.sql'); } // version + if ( GetVersion($db) == 27 ) { + ExecuteScript($db,'sql/patch/upgrade27.sql'); + } // version if ( DEBUG == 'false') ob_end_clean(); } diff --git a/html/admin/sql/patch/upgrade27.sql b/html/admin/sql/patch/upgrade27.sql new file mode 100644 index 000000000..9b2b4e116 --- /dev/null +++ b/html/admin/sql/patch/upgrade27.sql @@ -0,0 +1,5 @@ +begin; + +insert into format_csv_banque values ('Dexia','dexia_be.inc.php'); +update version set val=28; +commit; \ No newline at end of file