Made the result message a bit more informative when stopping the server.
parent
2e84749315
commit
88e4f795a6
|
@ -32,8 +32,9 @@ case 'stop':
|
||||||
$notification->push(_("There was a problem stopping the server: ") .
|
$notification->push(_("There was a problem stopping the server: ") .
|
||||||
$result->getMessage(), 'horde.error');
|
$result->getMessage(), 'horde.error');
|
||||||
} else {
|
} else {
|
||||||
$notification->push(_("The server was stopped."), 'horde.success');
|
$notification->push(
|
||||||
sleep(2);
|
_("The server was stopped. Reload if still running."),
|
||||||
|
'horde.success');
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'start':
|
case 'start':
|
||||||
|
|
Reference in New Issue