Changeset 2667:ef63c4e390be for plugins/blogroll/_public.php
- Timestamp:
- 02/22/14 10:04:16 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blogroll/_public.php
r2662 r2667 145 145 } 146 146 147 $links = self::getList( '<h3>%s</h3>','<ul>%s</ul>','<li%2$s>%1$s</li>',$w->category);147 $links = self::getList($w->renderSubtitle('',false),'<ul>%s</ul>','<li%2$s>%1$s</li>',$w->category); 148 148 149 149 if (empty($links)) { … … 151 151 } 152 152 153 return 154 ($w->content_only ? '' : '<div class="links'.($w->class ? ' '.html::escapeHTML($w->class) : '').'">'). 155 ($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : ''). 156 $links. 157 ($w->content_only ? '' : '</div>'); 153 return $w->renderDiv($w->content_only,'links '.$w->class,'', 154 ($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : ''). 155 $links); 158 156 } 159 157 }
Note: See TracChangeset
for help on using the changeset viewer.