aboutsummaryrefslogtreecommitdiff
path: root/www/rt34/files/ap2mp2-fix.pl
diff options
context:
space:
mode:
Diffstat (limited to 'www/rt34/files/ap2mp2-fix.pl')
-rw-r--r--www/rt34/files/ap2mp2-fix.pl10
1 files changed, 0 insertions, 10 deletions
diff --git a/www/rt34/files/ap2mp2-fix.pl b/www/rt34/files/ap2mp2-fix.pl
deleted file mode 100644
index fb04960150c0..000000000000
--- a/www/rt34/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;
-};