diff options
author | SVN Migration <svn@php.net> | 2003-10-20 15:33:55 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-10-20 15:33:55 +0000 |
commit | b35a47887225d5eb0c607327cd013e9f56e862d1 (patch) | |
tree | ca5cff0d747c59ff8ed7ff8a5c3cf0b51dff8764 /scripts/apache/htaccessfix.awk | |
parent | f811341773306eb5c77f63ef13bd677ac4641938 (diff) | |
download | php-git-RELEASE_1_3b3.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_3b3'.RELEASE_1_3b3
Diffstat (limited to 'scripts/apache/htaccessfix.awk')
-rw-r--r-- | scripts/apache/htaccessfix.awk | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/scripts/apache/htaccessfix.awk b/scripts/apache/htaccessfix.awk deleted file mode 100644 index 3c784cd335..0000000000 --- a/scripts/apache/htaccessfix.awk +++ /dev/null @@ -1,23 +0,0 @@ -# $Id$ - -/^[ \t]*php3_*/ { - phpcommand=substr($1,6) - phpvalue=tolower($2) - print "<IfModule mod_php3.c>" - print $0 - print "</IfModule>" - print "<IfModule mod_php4.c>" - if (phpvalue=="on") { - print "php_flag " phpcommand " on" - } else if (phpvalue=="off") { - print "php_flag " phpcommand " off" - } else { - print "php_value " phpcommand " " substr($0,index($0,$1)+length($1)+1) - } - print "</IfModule>" -} - -! /^[ \t]*php3_*/ { - print $0 -} - |