aboutsummaryrefslogtreecommitdiff
path: root/www/rt32/files
diff options
context:
space:
mode:
authorDmitry Sivachenko <demon@FreeBSD.org>2003-11-18 09:21:10 +0000
committerDmitry Sivachenko <demon@FreeBSD.org>2003-11-18 09:21:10 +0000
commitf6ea0d1357aacae2d0024c04471c05058adb633b (patch)
treefdcfec59295fb33243a8be0b06d248c337a374ca /www/rt32/files
parent860ab884d1430ff2f428c089c79734224b9be9df (diff)
downloadports-f6ea0d1357aacae2d0024c04471c05058adb633b.tar.gz
ports-f6ea0d1357aacae2d0024c04471c05058adb633b.zip
Notes
Diffstat (limited to 'www/rt32/files')
-rw-r--r--www/rt32/files/ap2mp2-fix.pl10
1 files changed, 0 insertions, 10 deletions
diff --git a/www/rt32/files/ap2mp2-fix.pl b/www/rt32/files/ap2mp2-fix.pl
deleted file mode 100644
index fb04960150c0..000000000000
--- a/www/rt32/files/ap2mp2-fix.pl
+++ /dev/null
@@ -1,10 +0,0 @@
-# temp fix for mp2-09... make a dummy Apache->request
-require Apache::RequestUtil;
-no warnings 'redefine';
-my $sub = *Apache::request{CODE};
-*Apache::request = sub {
- my $r;
- eval { $r = $sub->('Apache'); };
- # warn $@ if $@;
- return $r;
-};