From: Sam Reed Date: Fri, 7 Jan 2011 03:04:03 +0000 (+0000) Subject: Widen api help splitters X-Git-Tag: 1.31.0-rc.0~32723 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=981e47d8011b41bc98d905b2b3b9d14465ffd771;p=lhc%2Fweb%2Fwiklou.git Widen api help splitters --- diff --git a/includes/api/ApiMain.php b/includes/api/ApiMain.php index 8933e05a96..dfee657e34 100644 --- a/includes/api/ApiMain.php +++ b/includes/api/ApiMain.php @@ -836,7 +836,7 @@ class ApiMain extends ApiBase { // Use parent to make default message for the main module $msg = parent::makeHelpMsg(); - $astriks = str_repeat( '*** ', 10 ); + $astriks = str_repeat( '*** ', 14 ); $msg .= "\n\n$astriks Modules $astriks\n\n"; foreach ( array_keys( $this->mModules ) as $moduleName ) { $module = new $this->mModules[$moduleName] ( $this, $moduleName ); diff --git a/includes/api/ApiQuery.php b/includes/api/ApiQuery.php index c087c9677c..0f1d63dac8 100644 --- a/includes/api/ApiQuery.php +++ b/includes/api/ApiQuery.php @@ -599,8 +599,8 @@ class ApiQuery extends ApiBase { $this->mPageSet = null; $this->mAllowedGenerators = array(); // Will be repopulated - $querySeparator = str_repeat( '--- ', 8 ); - $moduleSeparator = str_repeat( '*** ', 10 ); + $querySeparator = str_repeat( '--- ', 12 ); + $moduleSeparator = str_repeat( '*** ', 14 ); $msg .= "\n$querySeparator Query: Prop $querySeparator\n\n"; $msg .= $this->makeHelpMsgHelper( $this->mQueryPropModules, 'prop' ); $msg .= "\n$querySeparator Query: List $querySeparator\n\n";