From: Roan Kattouw Date: Fri, 6 Feb 2009 10:25:51 +0000 (+0000) Subject: Fix fatal error in r46885 (add templates parameter to action=import): add missing... X-Git-Tag: 1.31.0-rc.0~43009 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=c07397ee7f0e13f7a2c5a6066df0ccebea50d1bf;p=lhc%2Fweb%2Fwiklou.git Fix fatal error in r46885 (add templates parameter to action=import): add missing comma --- diff --git a/includes/api/ApiImport.php b/includes/api/ApiImport.php index 50a28a1c83..53fdf1799b 100644 --- a/includes/api/ApiImport.php +++ b/includes/api/ApiImport.php @@ -59,8 +59,8 @@ class ApiImport extends ApiBase { $source = ImportStreamSource::newFromInterwiki( $params['interwikisource'], $params['interwikipage'], - $params['fullhistory'] - $params['templates'] ); + $params['fullhistory'], + $params['templates']); } else {