From b070f3a44bf640edc8fa63d5d7bb15993ec8f195 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Fri, 7 May 2010 14:24:57 +0000 Subject: [PATCH] Fix r66008: don't declare wfArrayMap() twice --- config/Installer.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/config/Installer.php b/config/Installer.php index 333c38e005..069d806861 100644 --- a/config/Installer.php +++ b/config/Installer.php @@ -2254,17 +2254,6 @@ function getShellLocale( $wikiLang ) { return false; } -function wfArrayMap( $function, $input ) { - $ret = array_map( $function, $input ); - foreach ( $ret as $key => $value ) { - $taint = istainted( $input[$key] ); - if ( $taint ) { - taint( $ret[$key], $taint ); - } - } - return $ret; -} - ?>
-- 2.20.1