Changeset 776:4ce635c0ca26 for plugins/widgets/_widgets_functions.php
- Timestamp:
- 12/02/11 08:50:18 (14 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/widgets/_widgets_functions.php
r741 r776 50 50 $res .= 51 51 '<li class="topnav-arch">'. 52 '<a href="'.$core->blog->url.$core->url->get Base("archive").'">'.52 '<a href="'.$core->blog->url.$core->url->getURLFor("archive").'">'. 53 53 __('Archives').'</a></li>'. 54 54 '</ul>'. … … 91 91 92 92 $res .= 93 '<a href="'.$core->blog->url.$core->url->getBase('category').'/'. 94 $rs->cat_url.'">'. 93 '<a href="'.$core->blog->url.$core->url->getURLFor('category', $rs->cat_url).'">'. 95 94 html::escapeHTML($rs->cat_title).'</a>'. 96 95 ($w->postcount ? ' <span>('.$rs->nb_post.')</span>' : ''); … … 171 170 ' <li>'. 172 171 sprintf($l, 173 '<a href="'.$core-> blog->url.$core->url->getBase('lang').$rs->post_lang.'" '.172 '<a href="'.$core->url->getURLFor('lang',$rs->post_lang).'" '. 174 173 'class="lang-'.$rs->post_lang.'">'. 175 174 $lang_name.'</a>'). … … 203 202 $res .= 204 203 '<li><a type="'.$mime.'" '. 205 'href="'.$core->blog->url.$core->url->get Base('feed').'/'.$type.'" '.204 'href="'.$core->blog->url.$core->url->getURLFor('feed', $type).'" '. 206 205 'title="'.sprintf($p_title,($type == 'atom' ? 'Atom' : 'RSS')).'" class="feed">'. 207 206 __('Entries feed').'</a></li>'; … … 211 210 $res .= 212 211 '<li><a type="'.$mime.'" '. 213 'href="'.$core->blog->url.$core->url->get Base('feed').'/'.$type.'/comments" '.212 'href="'.$core->blog->url.$core->url->getURLFor('feed',$type.'/comments').'" '. 214 213 'title="'.sprintf($c_title,($type == 'atom' ? 'Atom' : 'RSS')).'" class="feed">'. 215 214 __('Comments feed').'</a></li>';
Note: See TracChangeset
for help on using the changeset viewer.