4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-15 05:36:37 +00:00

Padding fix for station history, fix for podcasts with multiple links.

This commit is contained in:
Buster Neece 2014-08-18 02:42:07 -05:00
parent b8f384782f
commit 4e840a6dc3
2 changed files with 7 additions and 0 deletions

View File

@ -44,6 +44,9 @@ class Rss extends AdapterAbstract
$description = preg_replace('/<a[^(>)]+>read more<\/a>/i', '', $description); // Remove "read more" link.
$web_url = $item->link();
if (is_array($web_url))
$web_url = $web_url[0];
if (!$web_url && substr($guid, 0, 4) == 'http')
$web_url = $guid;

View File

@ -253,6 +253,10 @@ li.podcast {
font-size: 12px;
}
.station .station-history {
margin-top: 5px;
}
.station .station-player-container {
padding-bottom: 5px;
}