Changeset 691 in subversion


Ignore:
Timestamp:
Aug 16, 2007 4:21:38 AM (6 years ago)
Author:
thomasb
Message:

Use IfModule? directive in .htaccess (closes #1484381)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/.htaccess

    r667 r691  
    11# AddDefaultCharset     UTF-8 
    2 php_flag        display_errors  Off 
    3 php_flag        log_errors      On 
    4 php_value       error_log       logs/errors 
    5 php_value       upload_max_filesize     5M 
     2 
     3<IfModule mod_php4.c> 
     4  php_flag      display_errors  Off 
     5  php_flag      log_errors      On 
     6  php_value     error_log       logs/errors 
     7  php_value     upload_max_filesize     5M 
     8</IfModule> 
     9 
     10<IfModule mod_php5.c> 
     11  php_flag      display_errors  Off 
     12  php_flag      log_errors      On 
     13  php_value     error_log       logs/errors 
     14  php_value     upload_max_filesize     5M 
     15</IfModule> 
    616 
    717<FilesMatch "(\.inc|\~)$"> 
Note: See TracChangeset for help on using the changeset viewer.