Changeset 1454:e64273de06ad for plugins/blogroll/index.php
- Timestamp:
- 08/18/13 16:27:51 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blogroll/index.php
r1358 r1454 277 277 '<div class="multi-part clear" id="add-link" title="'.__('Add a link').'">'. 278 278 '<form action="plugin.php" method="post" id="add-link-form">'. 279 '< fieldset><legend>'.__('Add a new link').'</legend>'.280 '<p class="col"><label for="link_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').' '.279 '<h3>'.__('Add a new link').'</h3>'. 280 '<p class="col"><label for="link_title" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 281 281 form::field('link_title',30,255,$link_title). 282 '</ label></p>'.283 284 '<p class="col"><label for="link_href" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('URL:').' '.282 '</p>'. 283 284 '<p class="col"><label for="link_href" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('URL:').'</label> '. 285 285 form::field('link_href',30,255,$link_href). 286 '</ label></p>'.287 288 '<p class="col"><label for="link_desc">'.__('Description:').' '.286 '</p>'. 287 288 '<p class="col"><label for="link_desc">'.__('Description:').'</label> '. 289 289 form::field('link_desc',30,255,$link_desc). 290 '</ label></p>'.291 292 '<p class="col"><label for="link_lang">'.__('Language:').' '.290 '</p>'. 291 292 '<p class="col"><label for="link_lang">'.__('Language:').'</label> '. 293 293 form::field('link_lang',5,5,$link_lang). 294 '</ label></p>'.294 '</p>'. 295 295 '<p>'.form::hidden(array('p'),'blogroll'). 296 296 $core->formNonce(). 297 297 '<input type="submit" name="add_link" value="'.__('Save').'" /></p>'. 298 '</fieldset>'.299 298 '</form>'. 300 299 '</div>'; … … 303 302 '<div class="multi-part" id="add-cat" title="'.__('Add a category').'">'. 304 303 '<form action="plugin.php" method="post" id="add-category-form">'. 305 '< fieldset><legend>'.__('Add a new category').'</legend>'.306 '<p><label for="cat_title" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').' '.307 form::field('cat_title',30,255,$cat_title).' </label>'.304 '<h3>'.__('Add a new category').'</h3>'. 305 '<p><label for="cat_title" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label> '. 306 form::field('cat_title',30,255,$cat_title).' '. 308 307 form::hidden(array('p'),'blogroll'). 309 308 $core->formNonce(). 310 309 '<input type="submit" name="add_cat" value="'.__('Save').'" /></p>'. 311 '</fieldset>'.312 310 '</form>'. 313 311 '</div>'; … … 318 316 echo 319 317 '<form action="plugin.php" method="post" id="import-links-form" enctype="multipart/form-data">'. 320 '< fieldset><legend>'.__('Import links').'</legend>'.321 '<p><label for="links_file" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('OPML or XBEL File:').' '.322 '<input type="file" id="links_file" name="links_file" /></ label></p>'.318 '<h3>'.__('Import links').'</h3>'. 319 '<p><label for="links_file" class=" classic required"><abbr title="'.__('Required field').'">*</abbr> '.__('OPML or XBEL File:').'</label> '. 320 '<input type="file" id="links_file" name="links_file" /></p>'. 323 321 '<p>'.form::hidden(array('p'),'blogroll'). 324 322 $core->formNonce(). 325 323 '<input type="submit" name="import_links" value="'.__('Import').'" /></p>'. 326 '</fieldset>'.327 324 '</form>'; 328 325 } … … 330 327 echo 331 328 '<form action="plugin.php" method="post" id="import-links-form">'. 332 '< fieldset><legend>'.__('Import links').'</legend>';329 '<h3>'.__('Import links').'</h3>'; 333 330 if (empty($imported)) { 334 331 echo '<p>'.__('Nothing to import').'</p>'; … … 371 368 } 372 369 echo 373 '</fieldset>'.374 370 '</form>'; 375 371 }
Note: See TracChangeset
for help on using the changeset viewer.