Fixes #5420 -- Fix link on disabled station profile page.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-06-04 18:32:30 -05:00
parent 24d2a728f7
commit af97ed952d
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
1 changed files with 11 additions and 3 deletions

View File

@ -1,8 +1,16 @@
<?php
/** @var App\Entity\Station $station */
$this->layout('main', ['title' =>
__('Station Broadcasting Disabled')
$this->layout('main', [
'title' =>
__('Station Broadcasting Disabled'),
]);
?>
<p><?=__('Your station is currently not enabled for broadcasting. You can still manage media, playlists, and other station settings. To re-enable broadcasting, <a href="%s">edit your station profile</a>.', $router->fromHere('stations:profile:edit')) ?></p>
<p>
<?= sprintf(
__(
'Your station is currently not enabled for broadcasting. You can still manage media, playlists, and other station settings. To re-enable broadcasting, <a href="%s">edit your station profile</a>.'
),
$router->fromHere('stations:profile:edit')
) ?></p>