|
|
@@ -92,7 +92,7 @@
|
|
|
<option></option>
|
|
|
<#if push_time_list??>
|
|
|
<#list push_time_list as push_time>
|
|
|
- <option <#if defaultPushTime?? && defaultPushTime == push_time>selected="selected"</#if> value="${push_time!}">${push_time!}</option>
|
|
|
+ <option <#if defaultPushTime?? && push_time?? && defaultPushTime == push_time>selected="selected"</#if> value="${push_time!}">${push_time!}</option>
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|
|
|
@@ -103,7 +103,7 @@
|
|
|
<option></option>
|
|
|
<#if author_list??>
|
|
|
<#list author_list as author>
|
|
|
- <option <#if defaultAuthor?? && defaultAuthor == author>selected="selected"</#if> value="${author!}">${author!}</option>
|
|
|
+ <option <#if defaultAuthor?? && author?? && defaultAuthor == author>selected="selected"</#if> value="${author!}">${author!}</option>
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|
|
|
@@ -114,7 +114,7 @@
|
|
|
<option></option>
|
|
|
<#if copy_right_list??>
|
|
|
<#list copy_right_list as copy_right>
|
|
|
- <option <#if defaultCopyRight?? && defaultCopyRight == copy_right>selected="selected"</#if> value="${copy_right!}">${copy_right!}</option>
|
|
|
+ <option <#if defaultCopyRight?? && copy_right?? && defaultCopyRight == copy_right>selected="selected"</#if> value="${copy_right!}">${copy_right!}</option>
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|
|
|
@@ -125,7 +125,7 @@
|
|
|
<option></option>
|
|
|
<#if tag_list??>
|
|
|
<#list tag_list as tag>
|
|
|
- <option <#if defaultTaxonomy?? && defaultTaxonomy == tag>selected="selected"</#if> value="${tag!}">${tag!}</option>
|
|
|
+ <option <#if defaultTaxonomy?? && tag?? && defaultTaxonomy == tag>selected="selected"</#if> value="${tag!}">${tag!}</option>
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|