From: Sam Reed Date: Fri, 23 Jul 2010 15:58:32 +0000 (+0000) Subject: Resolve minor fixme from r69761 X-Git-Tag: 1.31.0-rc.0~35992 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=ace7e5b87aea1cd3a607efa9ea73bd344a19f762;p=lhc%2Fweb%2Fwiklou.git Resolve minor fixme from r69761 --- diff --git a/includes/api/ApiQuerySiteinfo.php b/includes/api/ApiQuerySiteinfo.php index 2ffb700b17..eb401ca694 100644 --- a/includes/api/ApiQuerySiteinfo.php +++ b/includes/api/ApiQuerySiteinfo.php @@ -252,7 +252,7 @@ class ApiQuerySiteinfo extends ApiQueryBase { $this->addOption( 'ORDER BY', 'iw_prefix' ); - $res = $this->select( __METHOD__ ); + $res = $this->select( __METHOD__ ); $data = array(); $langNames = Language::getLanguageNames(); @@ -262,7 +262,7 @@ class ApiQuerySiteinfo extends ApiQueryBase { if ( $row->iw_local == '1' ) { $val['local'] = ''; } -// $val['trans'] = intval( $row->iw_trans ); // should this be exposed? + //$val['trans'] = intval( $row->iw_trans ); // should this be exposed? if ( isset( $langNames[$row->iw_prefix] ) ) { $val['language'] = $langNames[$row->iw_prefix]; }