Fix cosmetic
This commit is contained in:
parent
beac80ffc8
commit
9f4b3ce4c1
5 changed files with 13 additions and 3 deletions
|
|
@ -463,6 +463,9 @@ if ( DEBUG=='false' ) ob_start();
|
|||
if ( GetVersion($db) == 14 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade14.sql');
|
||||
} // version
|
||||
if ( GetVersion($db) == 15 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade14.sql');
|
||||
} // version
|
||||
|
||||
|
||||
if ( DEBUG == 'false') ob_end_clean();
|
||||
|
|
@ -541,6 +544,9 @@ if (DEBUG == 'false' ) ob_start();
|
|||
if ( GetVersion($db) == 14 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade14.sql');
|
||||
} // version
|
||||
if ( GetVersion($db) == 15 ) {
|
||||
ExecuteScript($db,'sql/patch/upgrade15.sql');
|
||||
} // version
|
||||
|
||||
if ( DEBUG == 'false') ob_end_clean();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -283,7 +283,7 @@ INSERT INTO attr_def (ad_id, ad_text) VALUES (11, 'Montant initial');
|
|||
INSERT INTO attr_def (ad_id, ad_text) VALUES (12, 'Personne de contact ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (13, 'numéro de tva ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (14, 'Adresse ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postale ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postal ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (16, 'pays ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (17, 'téléphone ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (18, 'email ');
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@ INSERT INTO attr_def (ad_id, ad_text) VALUES (11, 'Montant initial');
|
|||
INSERT INTO attr_def (ad_id, ad_text) VALUES (12, 'Personne de contact ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (13, 'numéro de tva ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (14, 'Adresse ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postale ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postal ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (16, 'pays ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (17, 'téléphone ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (18, 'email ');
|
||||
|
|
|
|||
|
|
@ -290,7 +290,7 @@ INSERT INTO attr_def (ad_id, ad_text) VALUES (11, 'Montant initial');
|
|||
INSERT INTO attr_def (ad_id, ad_text) VALUES (12, 'Personne de contact ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (13, 'numéro de tva ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (14, 'Adresse ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postale ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (15, 'code postal');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (16, 'pays ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (17, 'téléphone ');
|
||||
INSERT INTO attr_def (ad_id, ad_text) VALUES (18, 'email ');
|
||||
|
|
|
|||
4
html/admin/sql/patch/upgrade15.sql
Normal file
4
html/admin/sql/patch/upgrade15.sql
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
begin;
|
||||
update attr_def set ad_text='code postal' where ad_id=15;
|
||||
update version set val=16;
|
||||
commit;
|
||||
Loading…
Add table
Add a link
Reference in a new issue