Index: trunk/extensions/CodeReview/bulkStatusUpdate.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | $this->addArg( 'repo', 'The name of the repo. Cannot be all. Repos:' |
16 | 16 | . implode( ", ", CodeRepository::getRepoList() ) ); |
17 | 17 | $this->addArg( 'revisions', "The revisions to set status for. Format: start:end" ); |
18 | | - $this->addArg( 'status', implode( ", ", CodeRevision::getPossibleStates() ) ); |
| 18 | + $this->addArg( 'status', "Code Status: " . implode( ", ", CodeRevision::getPossibleStates() ) ); |
19 | 19 | $this->addArg( 'user', "Username for whom to accredit the state changes to." . |
20 | 20 | "The User needs to have the 'codereview-set-status' right" ); |
21 | 21 | } |
— | — | @@ -28,7 +28,7 @@ |
29 | 29 | |
30 | 30 | $repo = CodeRepository::newFromName( $repoName ); |
31 | 31 | if ( !$repo ) { |
32 | | - $this->error( "Repo '{$$repoName}' is not a valid Repository", true ); |
| 32 | + $this->error( "Repo '{$repoName}' is not a valid Repository", true ); |
33 | 33 | } |
34 | 34 | |
35 | 35 | $revisions = $this->getArg( 1 ); |