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 / +6 lines)
Lines 7029-7034 INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ( Link Here
7029
    SetVersion($DBversion);
7029
    SetVersion($DBversion);
7030
}
7030
}
7031
7031
7032
$DBversion = "3.13.00.XXX";
7033
if ( CheckVersion($DBversion) ) {
7034
    $dbh->do("UPDATE language_rfc4646_to_iso639 SET iso639_2_code='ita' WHERE rfc4646_subtag='it'");
7035
    print "Upgrade to $DBversion done (Bug 9519: Wrong language code for Italian in the advanced search language limitations)\n";
7036
    SetVersion($DBversion);
7037
}
7032
7038
7033
=head1 FUNCTIONS
7039
=head1 FUNCTIONS
7034
7040
7035
- 

Return to bug 9519