Followup r87225
[lhc/web/wiklou.git] / maintenance / install-utils.inc
index 93ca0b5..7013033 100644 (file)
@@ -3,6 +3,21 @@
  * This file contains ancient db-related functions that have been deprecated. Do
  * not use them. Please find the appropriate replacements.
  *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
  * @file
  */
 
@@ -20,12 +35,3 @@ function dbsource( $fname, $db = false ) {
                exit( 1 );
        }
 }
-
-/**
- * @deprecated Use DatabaseBase::patchPath(). Will probably be removed in 1.18
- */
-function archive( $name ) {
-       wfDeprecated( __METHOD__ );
-       $dbr = wfGetDB( DB_SLAVE );
-       return $dbr->patchPath( $name );
-}