Changeset 3639:fe9f4d94f86b for plugins/blogroll
- Timestamp:
- 12/29/17 14:17:26 (8 years ago)
- Branch:
- default
- Location:
- plugins/blogroll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blogroll/edit.php
r3297 r3639 116 116 117 117 '<p><label for="link_desc" class="required classic"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 118 form::field('link_desc',30,255,html::escapeHTML($link_desc) ).118 form::field('link_desc',30,255,html::escapeHTML($link_desc),'','',false,'required placeholder="'.__('Title').'"'). 119 119 120 120 form::hidden('edit',1). … … 134 134 135 135 '<p><label for="link_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 136 form::field('link_title',30,255,html::escapeHTML($link_title) ).'</p>'.136 form::field('link_title',30,255,html::escapeHTML($link_title),'','',false,'required placeholder="'.__('Title').'"').'</p>'. 137 137 138 138 '<p><label for="link_href" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('URL:').'</label> '. 139 form::field('link_href',30,255,html::escapeHTML($link_href) ).'</p>'.139 form::field('link_href',30,255,html::escapeHTML($link_href),'','',false,'required placeholder="'.__('URL').'"').'</p>'. 140 140 141 141 '<p><label for="link_desc">'.__('Description:').'</label> '. -
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.