Fix cosmetic

This commit is contained in:
sparkyx 2006-08-06 12:48:38 +00:00
parent beac80ffc8
commit 9f4b3ce4c1
5 changed files with 13 additions and 3 deletions

View file

@ -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();
}

View file

@ -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 ');

View file

@ -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 ');

View file

@ -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 ');

View file

@ -0,0 +1,4 @@
begin;
update attr_def set ad_text='code postal' where ad_id=15;
update version set val=16;
commit;