diff options
author | SVN Migration <svn@php.net> | 2002-10-12 14:20:33 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-10-12 14:20:33 +0000 |
commit | faa91c556864bf06779a0bb05bbf97ad72a034fb (patch) | |
tree | f2b77f482eb07af38f786e126f967818f1d669c5 /scripts/apache/htaccessfix.awk | |
parent | c93ff0fa6ffa231d4dc97d0766649f6f8038f32f (diff) | |
download | php-git-RELEASE_1_0b1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b1'.RELEASE_1_0b1
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 -} - |