* SAAS-1184 - more polish for publishing/podcasting
* Fix some issues with the station podcast feed * Various small fixes
This commit is contained in:
parent
5264bebe57
commit
74f7c454b5
13 changed files with 257 additions and 50 deletions
|
@ -39,7 +39,13 @@
|
|||
|
||||
<div>
|
||||
<label><?php echo _("Language") ?></label>
|
||||
<input name="podcast_language" ng-model="podcast.language" type="text"/>
|
||||
<select name="podcast_language" ng-model="podcast.language">
|
||||
<?php
|
||||
foreach(Application_Common_LocaleHelper::getISO6391LanguageCodes() as $code=>$lang) {
|
||||
echo "<option value='$code'>$lang</option>";
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
|
@ -49,7 +55,7 @@
|
|||
|
||||
<div>
|
||||
<label><?php echo _("Link") ?></label>
|
||||
<input name="podcast_link" ng-model="podcast.link" type="text"/>
|
||||
<input name="podcast_link" ng-model="podcast.link" type="url"/>
|
||||
</div>
|
||||
|
||||
<fieldset>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue