- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/category.php
r0 r38 184 184 '<form action="category.php" method="post" id="category-form">'. 185 185 '<fieldset><legend>'.__('Category information').'</legend>'. 186 '<p><label class="required" title="'.__('Required field').'">'.__('Title:').' '.186 '<p><label class="required" for="cat_title"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').' '. 187 187 form::field('cat_title',40,255,html::escapeHTML($cat_title),'',2). 188 188 '</label></p>'; … … 191 191 $rs = $core->blog->getCategories(array('post_type'=>'post')); 192 192 echo 193 '<p><label >'.__('Parent:').' '.193 '<p><label for="new_cat_parent">'.__('Parent:').' '. 194 194 '<select id="new_cat_parent" name="new_cat_parent" tabindex="3">'. 195 195 '<option value="0">'.__('Top level').'</option>'; … … 204 204 echo 205 205 '<div class="lockable">'. 206 '<p><label >'.__('URL:').' '.form::field('cat_url',40,255,html::escapeHTML($cat_url),'',4).206 '<p><label for="cat_url">'.__('URL:').' '.form::field('cat_url',40,255,html::escapeHTML($cat_url),'',4). 207 207 '</label></p>'. 208 208 '<p class="form-note warn" id="note-cat-url">'. … … 230 230 '<form action="category.php" method="post">'. 231 231 '<fieldset><legend>'.__('Category parent').'</legend>'. 232 '<p><label class="classic">'.__('Parent:').' '.232 '<p><label for="cat_parent" class="classic">'.__('Parent:').' '. 233 233 form::combo('cat_parent',$allowed_parents,$cat_parent).'</label></p>'. 234 234 '<p><input type="submit" accesskey="s" value="'.__('Save').'" tabindex="5" />'. … … 244 244 '<fieldset><legend>'.__('Category sibling').'</legend>'. 245 245 '<p><label class="classic" for="cat_sibling">'.__('Move current category').'</label> '. 246 form::combo('cat_move',array(__('before')=>'before',__('after')=>'after') ).' '.246 form::combo('cat_move',array(__('before')=>'before',__('after')=>'after'),'','','',false,'title="'.__('position: ').'"').' '. 247 247 form::combo('cat_sibling',$siblings).'</p>'. 248 248 '<p><input type="submit" accesskey="s" value="'.__('Save').'" tabindex="5" />'.
Note: See TracChangeset
for help on using the changeset viewer.