Changeset 3639:fe9f4d94f86b for plugins/blogroll/index.php
- Timestamp:
- 12/29/17 14:17:26 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blogroll/index.php
r3297 r3639 273 273 '<h3>'.__('Add a new link').'</h3>'. 274 274 '<p class="col"><label for="link_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 275 form::field('link_title',30,255,$link_title ).275 form::field('link_title',30,255,$link_title,'','',false,'required placeholder="'.__('Title').'"'). 276 276 '</p>'. 277 277 278 278 '<p class="col"><label for="link_href" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('URL:').'</label> '. 279 form::field('link_href',30,255,$link_href ).279 form::field('link_href',30,255,$link_href,'','',false,'required placeholder="'.__('URL').'"'). 280 280 '</p>'. 281 281 … … 298 298 '<h3>'.__('Add a new category').'</h3>'. 299 299 '<p><label for="cat_title" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 300 form::field('cat_title',30,255,$cat_title ).' '.300 form::field('cat_title',30,255,$cat_title,'','',false,'required placeholder="'.__('Title').'"').' '. 301 301 form::hidden(array('p'),'blogroll'). 302 302 $core->formNonce(). … … 312 312 '<h3>'.__('Import links').'</h3>'. 313 313 '<p><label for="links_file" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('OPML or XBEL File:').'</label> '. 314 '<input type="file" id="links_file" name="links_file" /></p>'.314 '<input type="file" id="links_file" name="links_file" required /></p>'. 315 315 '<p>'.form::hidden(array('p'),'blogroll'). 316 316 $core->formNonce().
Note: See TracChangeset
for help on using the changeset viewer.