fixed unnumbered bug : wrong charset for the desktop with apache2

This commit is contained in:
Benjamin Sonntag 2008-12-21 04:06:02 +00:00
parent 6d62007afe
commit 9f636f7d00
2 changed files with 5 additions and 2 deletions

2
debian/changelog vendored
View File

@ -3,6 +3,8 @@ alternc (0.9.10) unstable; urgency=low
* bugfixes: * bugfixes:
* #1163: fix sqlbackup script call routine to retain backwards * #1163: fix sqlbackup script call routine to retain backwards
compatibility compatibility
* fix usage of ISO8859-15 charset (that may NOT be defined in locales...)
and add it to the correct url (%%fqdn_lettre%%...)
* major changes: * major changes:
* PHP sessions are now stored in /var/alternc/sessions * PHP sessions are now stored in /var/alternc/sessions

View File

@ -6,11 +6,12 @@
php_admin_flag safe_mode_gid off php_admin_flag safe_mode_gid off
php_admin_flag safe_mode off php_admin_flag safe_mode off
php_admin_flag register_globals on php_admin_flag register_globals on
AddDefaultCharset ISO-8859-15 AddDefaultCharset ISO-8859-1
</Directory> </Directory>
<Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%> <Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%>
php_admin_flag safe_mode_gid off php_admin_flag safe_mode_gid off
php_admin_flag safe_mode off php_admin_flag safe_mode off
php_admin_flag register_globals on php_admin_flag register_globals on
AddDefaultCharset ISO-8859-1
</Directory> </Directory>