Skip to content

Commit

Permalink
Add missing </label>
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Dec 17, 2012
1 parent 932cf35 commit c59daa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/concrete/blocks/rss_displayer/form_setup_html.php
Expand Up @@ -43,8 +43,8 @@
<label><?=t('Display')?>:</label>
<div class="input">
<ul class="inputs-list">
<li><label><input name="showSummary" type="radio" value="0" <?=(!$rssObj->showSummary)?'checked':''?>> <span><?=t('Only Titles')?></span></li>
<li><label><input name="showSummary" type="radio" value="1" <?=($rssObj->showSummary)?'checked':''?>> <span><?=t('Titles & Summary')?></span></li>
<li><label><input name="showSummary" type="radio" value="0" <?=(!$rssObj->showSummary)?'checked':''?>> <span><?=t('Only Titles')?></span></label></li>
<li><label><input name="showSummary" type="radio" value="1" <?=($rssObj->showSummary)?'checked':''?>> <span><?=t('Titles & Summary')?></span></label></li>
</ul>
</div>
</div>
Expand All @@ -56,4 +56,4 @@
<li><label><input name="launchInNewWindow" type="checkbox" value="1" <?=($rssObj->launchInNewWindow)?'checked':''?>> <span><?=t('Open links in a new window')?></span></label></li>
</ul>
</div>
</div>
</div>

0 comments on commit c59daa1

Please sign in to comment.