From 981e47d8011b41bc98d905b2b3b9d14465ffd771 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 7 Jan 2011 03:04:03 +0000 Subject: [PATCH] Widen api help splitters --- includes/api/ApiMain.php | 2 +- includes/api/ApiQuery.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"; -- 2.20.1