View | Details | Raw Unified | Return to bug 9519
Collapse All | Expand All

(-)a/installer/data/mysql/fr-FR/1-Obligatoire/subtag_registry.sql (-1 / +1 lines)
Lines 273-279 INSERT INTO language_subtag_registry( subtag, type, description, added) Link Here
273
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
273
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
274
274
275
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
275
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
276
VALUES( 'it','ind');
276
VALUES( 'it','ita');
277
277
278
INSERT INTO language_descriptions(subtag, type, lang, description)
278
INSERT INTO language_descriptions(subtag, type, lang, description)
279
VALUES( 'it', 'language', 'it', 'Italiano');
279
VALUES( 'it', 'language', 'it', 'Italiano');
(-)a/installer/data/mysql/it-IT/necessari/subtag_registry.sql (-1 / +1 lines)
Lines 314-320 INSERT INTO language_subtag_registry( subtag, type, description, added) Link Here
314
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
314
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
315
315
316
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
316
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
317
VALUES( 'it','ind');
317
VALUES( 'it','ita');
318
318
319
INSERT INTO language_descriptions(subtag, type, lang, description)
319
INSERT INTO language_descriptions(subtag, type, lang, description)
320
VALUES( 'it', 'language', 'it', 'Italiano');
320
VALUES( 'it', 'language', 'it', 'Italiano');
(-)a/installer/data/mysql/pl-PL/mandatory/subtag_registry.sql (-1 / +1 lines)
Lines 312-318 INSERT INTO language_subtag_registry( subtag, type, description, added) Link Here
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
313
313
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
315
VALUES( 'it','ind');
315
VALUES( 'it','ita');
316
316
317
INSERT INTO language_descriptions(subtag, type, lang, description)
317
INSERT INTO language_descriptions(subtag, type, lang, description)
318
VALUES( 'it', 'language', 'it', 'Italiano');
318
VALUES( 'it', 'language', 'it', 'Italiano');
(-)a/installer/data/mysql/ru-RU/mandatory/subtag_registry.sql (-1 / +1 lines)
Lines 312-318 INSERT INTO language_subtag_registry( subtag, type, description, added) Link Here
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
313
313
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
315
VALUES( 'it','ind');
315
VALUES( 'it','ita');
316
316
317
INSERT INTO language_descriptions(subtag, type, lang, description)
317
INSERT INTO language_descriptions(subtag, type, lang, description)
318
VALUES( 'it', 'language', 'it', 'Italiano');
318
VALUES( 'it', 'language', 'it', 'Italiano');
(-)a/installer/data/mysql/uk-UA/mandatory/subtag_registry.sql (-1 / +1 lines)
Lines 312-318 INSERT INTO language_subtag_registry( subtag, type, description, added) Link Here
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
312
VALUES ( 'it', 'language', 'Italian','2005-10-16' );
313
313
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
314
INSERT INTO language_rfc4646_to_iso639(rfc4646_subtag,iso639_2_code)
315
VALUES( 'it','ind');
315
VALUES( 'it','ita');
316
316
317
INSERT INTO language_descriptions(subtag, type, lang, description)
317
INSERT INTO language_descriptions(subtag, type, lang, description)
318
VALUES( 'it', 'language', 'it', 'Italiano');
318
VALUES( 'it', 'language', 'it', 'Italiano');
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +7 lines)
Lines 7017-7022 if ( CheckVersion($DBversion) ) { Link Here
7017
    SetVersion($DBversion);
7017
    SetVersion($DBversion);
7018
}
7018
}
7019
7019
7020
$DBversion = "3.13.00.XXX";
7021
if ( CheckVersion($DBversion) ) {
7022
    $dbh->do("UPDATE language_rfc4646_to_iso639 SET iso639_2_code='ita' WHERE rfc4646_subtag='it'");
7023
    print "Upgrade to $DBversion done (Bug 9519: Wrong language code for Italian in the advanced search language limitations)\n";
7024
    SetVersion($DBversion);
7025
}
7026
7020
=head1 FUNCTIONS
7027
=head1 FUNCTIONS
7021
7028
7022
=head2 TableExists($table)
7029
=head2 TableExists($table)
7023
- 

Return to bug 9519