Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -740,7 +740,6 @@ |
741 | 741 | |
742 | 742 | putenv( 'wikilang=' . $lang ); |
743 | 743 | |
744 | | - $DP = $IP; |
745 | 744 | ini_set( 'include_path', ".:$IP:$IP/includes:$IP/languages:$IP/maintenance" ); |
746 | 745 | |
747 | 746 | if ( $lang == 'test' && $site == 'wikipedia' ) { |
— | — | @@ -753,7 +752,7 @@ |
754 | 753 | * @return String |
755 | 754 | */ |
756 | 755 | public function loadSettings() { |
757 | | - global $wgWikiFarm, $wgCommandLineMode, $IP, $DP; |
| 756 | + global $wgWikiFarm, $wgCommandLineMode, $IP; |
758 | 757 | |
759 | 758 | $wgWikiFarm = false; |
760 | 759 | if ( isset( $this->mOptions['conf'] ) ) { |
— | — | @@ -775,7 +774,6 @@ |
776 | 775 | "must exist and be readable in the source directory.", true ); |
777 | 776 | } |
778 | 777 | $wgCommandLineMode = true; |
779 | | - $DP = $IP; |
780 | 778 | return $settingsFile; |
781 | 779 | } |
782 | 780 | |