Index: trunk/phase3/maintenance/Maintenance.php |
— | — | @@ -1277,6 +1277,15 @@ |
1278 | 1278 | } |
1279 | 1279 | |
1280 | 1280 | /** |
| 1281 | + * Message to show that the update was done already and was just skipped |
| 1282 | + * @return String |
| 1283 | + */ |
| 1284 | + protected function updateSkippedMessage() { |
| 1285 | + $key = $this->getUpdateKey(); |
| 1286 | + return "Update '{$key}' already logged as completed."; |
| 1287 | + } |
| 1288 | + |
| 1289 | + /** |
1281 | 1290 | * Message to show the the update log was unable to log the completion of this update |
1282 | 1291 | * @return String |
1283 | 1292 | */ |
— | — | @@ -1297,10 +1306,4 @@ |
1298 | 1307 | * @return String |
1299 | 1308 | */ |
1300 | 1309 | abstract protected function getUpdateKey(); |
1301 | | - |
1302 | | - /** |
1303 | | - * Message to show that the update was done already and was just skipped |
1304 | | - * @return String |
1305 | | - */ |
1306 | | - abstract protected function updateSkippedMessage(); |
1307 | 1310 | } |