Index: trunk/phase3/includes/api/ApiQuery.php |
— | — | @@ -576,15 +576,15 @@ |
577 | 577 | $this->mPageSet = null; |
578 | 578 | $this->mAllowedGenerators = array(); // Will be repopulated |
579 | 579 | |
580 | | - $asterisk = str_repeat( '--- ', 8 ); |
581 | | - $asterisk2 = str_repeat( '*** ', 10 ); |
582 | | - $msg .= "\n$asterisk Query: Prop $asterisk\n\n"; |
| 580 | + $querySeparator = str_repeat( '--- ', 8 ); |
| 581 | + $moduleSeparator = str_repeat( '*** ', 10 ); |
| 582 | + $msg .= "\n$querySeparator Query: Prop $querySeparator\n\n"; |
583 | 583 | $msg .= $this->makeHelpMsgHelper( $this->mQueryPropModules, 'prop' ); |
584 | | - $msg .= "\n$asterisk Query: List $asterisk\n\n"; |
| 584 | + $msg .= "\n$querySeparator Query: List $querySeparator\n\n"; |
585 | 585 | $msg .= $this->makeHelpMsgHelper( $this->mQueryListModules, 'list' ); |
586 | | - $msg .= "\n$asterisk Query: Meta $asterisk\n\n"; |
| 586 | + $msg .= "\n$querySeparator Query: Meta $querySeparator\n\n"; |
587 | 587 | $msg .= $this->makeHelpMsgHelper( $this->mQueryMetaModules, 'meta' ); |
588 | | - $msg .= "\n\n$asterisk2 Modules: continuation $asterisk2\n\n"; |
| 588 | + $msg .= "\n\n$moduleSeparator Modules: continuation $moduleSeparator\n\n"; |
589 | 589 | |
590 | 590 | // Perform the base call last because the $this->mAllowedGenerators |
591 | 591 | // will be updated inside makeHelpMsgHelper() |