Skip to content

Commit

Permalink
Minor update: Replaced ifModule in .htaccess files with IfModule (upp…
Browse files Browse the repository at this point in the history
…er case I). This fixes #41
  • Loading branch information
Arul- committed Apr 21, 2012
1 parent 0823286 commit daa024e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/_001_helloworld/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>
2 changes: 1 addition & 1 deletion examples/_002_minimal/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>
2 changes: 1 addition & 1 deletion examples/_003_multiformat/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>
2 changes: 1 addition & 1 deletion examples/_004_error_response/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>
2 changes: 1 addition & 1 deletion examples/_005_protected_api/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>
2 changes: 1 addition & 1 deletion examples/_006_crud/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
<ifModule mod_php5.c>
<IfModule mod_php5.c>
php_flag display_errors Off
</IfModule>

0 comments on commit daa024e

Please sign in to comment.