@@ -263,7 +263,7 @@ |
||
263 | 263 | */ |
264 | 264 | public function getTitle() |
265 | 265 | { |
266 | - return "Pipeline {$this->ID} (Status: {$this->Status})"; |
|
266 | + return "pipeline {$this->ID} (Status: {$this->Status})"; |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | /** |
@@ -206,7 +206,7 @@ |
||
206 | 206 | public function start() |
207 | 207 | { |
208 | 208 | $this->Status = 'Started'; |
209 | - $this->log("Starting {$this->Title}..."); |
|
209 | + $this->log("starting {$this->Title}..."); |
|
210 | 210 | $this->write(); |
211 | 211 | |
212 | 212 | // Get tests to run |
@@ -124,7 +124,7 @@ |
||
124 | 124 | if (!$this->Started) { |
125 | 125 | $this->Started = SS_Datetime::now()->Rfc2822(); |
126 | 126 | } |
127 | - $this->log("Starting {$this->Title}..."); |
|
127 | + $this->log("starting {$this->Title}..."); |
|
128 | 128 | $this->write(); |
129 | 129 | return true; |
130 | 130 | } |
@@ -292,7 +292,7 @@ |
||
292 | 292 | public function startApproval() |
293 | 293 | { |
294 | 294 | $this->Status = 'Started'; |
295 | - $this->log("Starting {$this->Title}..."); |
|
295 | + $this->log("starting {$this->Title}..."); |
|
296 | 296 | // Determine if we should use delayed notification |
297 | 297 | $recipientGroup = 'all'; |
298 | 298 | if ($this->getConfigSetting('RecipientsDelay')) { |