mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
moved charset to a lang setting
This commit is contained in:
parent
6c714f9151
commit
5c41980a0c
@ -26,6 +26,7 @@
|
||||
- Group public items should now be working.
|
||||
- Fixed a wrong data type error when calling sort() on 1 folder.
|
||||
- Added week number in month view of calendar. (Patch by grasl)
|
||||
- Moved charset setting from globalconfig.inc.php / DB to lang files.
|
||||
- A bunch of other minor bug fixes.
|
||||
|
||||
[09072000] - Added print icon that allows you to print out a page without having
|
||||
|
@ -1,3 +1,4 @@
|
||||
INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'charset','common','en','iso-8859-1');
|
||||
INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'low','common','en','Low');
|
||||
INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'forum','common','en','Forum');
|
||||
INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'normal','common','en','Normal');
|
||||
|
@ -73,3 +73,5 @@ insert into config (config_name, config_value) values ('httpproxy_port', '');
|
||||
insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom');
|
||||
insert into config (config_name, config_value) values ('checkfornewversion', 'False');
|
||||
|
||||
insert into lang (message_id, app_name, lang, content) VALUES( 'charset','common','en','iso-8859-1');
|
||||
|
||||
|
@ -73,3 +73,6 @@ insert into config (config_name, config_value) values ('httpproxy_port', '');
|
||||
insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom');
|
||||
insert into config (config_name, config_value) values ('checkfornewversion', 'False');
|
||||
|
||||
insert into lang (message_id, app_name, lang, content) VALUES( 'charset','common','en','iso-8859-1');
|
||||
insert into lang (message_id, app_name, lang, content) VALUES( 'charset','common','de','iso-8859-1');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user