Changeset 970:047d7b4a6ffd for admin/blog_pref.php
- Timestamp:
- 11/06/12 17:21:21 (13 years ago)
- Branch:
- default
- Children:
- 971:a891f8b86552, 980:308abbb4125b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_pref.php
r953 r970 89 89 $post_url_combo[html::escapeHTML($blog_settings->system->post_url_format)] = html::escapeHTML($blog_settings->system->post_url_format); 90 90 } 91 92 # Note title tag combo 93 $note_title_tag_combo = array( 94 __('H4') => 0, 95 __('H3') => 1, 96 __('P') => 2 97 ); 91 98 92 99 # Image title combo … … 209 216 $blog_settings->system->put('wiki_comments',!empty($_POST['wiki_comments'])); 210 217 $blog_settings->system->put('enable_xmlrpc',!empty($_POST['enable_xmlrpc'])); 218 $blog_settings->system->put('note_title_tag',$_POST['note_title_tag']); 211 219 212 220 $blog_settings->system->put('nb_post_per_page',$nb_post_per_page); … … 331 339 form::combo('blog_timezone',dt::getZones(true,true),html::escapeHTML($blog_settings->system->blog_timezone)). 332 340 '</label></p>'. 333 '</div>'. 334 335 '<div class="col">'. 341 336 342 '<p><label for="copyright_notice">'.__('Copyright notice:'). 337 343 form::field('copyright_notice',30,255,html::escapeHTML($blog_settings->system->copyright_notice)). 338 344 '</label></p>'. 339 345 '</div>'. 346 347 '<div class="col">'. 340 348 '<p><label for="post_url_format">'.__('New post URL format:'). 341 349 form::combo('post_url_format',$post_url_combo,html::escapeHTML($blog_settings->system->post_url_format)). 342 350 '</label></p>'. 343 351 352 '<p><label for="note_title_tag">'.__('Note title HTML tag:'). 353 form::combo('note_title_tag',$note_title_tag_combo,$blog_settings->system->note_title_tag). 354 '</label></p>'. 355 344 356 '<p><label for="enable_xmlrpc" class="classic">'. 345 357 form::checkbox('enable_xmlrpc','1',$blog_settings->system->enable_xmlrpc).
Note: See TracChangeset
for help on using the changeset viewer.