Changeset 3725:b47f38c701ee for admin/category.php
- Timestamp:
- 03/02/18 15:55:06 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/category.php
r3703 r3725 185 185 '<h3>' . __('Category information') . '</h3>' . 186 186 '<p><label class="required" for="cat_title"><abbr title="' . __('Required field') . '">*</abbr> ' . __('Name:') . '</label> ' . 187 form::field('cat_title', 40, 255, html::escapeHTML($cat_title), '', '', false, 'required placeholder="' . __('Name') . '"') . 188 '</p>'; 187 form::field('cat_title', 40, 255, array( 188 'default' => html::escapeHTML($cat_title), 189 'extra_html' => 'required placeholder="' . __('Name') . '"' 190 )) . 191 '</p>'; 189 192 if (!$cat_id) { 190 193 $rs = $core->blog->getCategories();
Note: See TracChangeset
for help on using the changeset viewer.