Changeset 1741:b669af061dda for admin/post.php
- Timestamp:
- 09/06/13 18:03:13 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r1719 r1741 414 414 '</p>'. 415 415 '<p>'.($post_id && $post_format != 'xhtml' ? 416 '<a id="convert-xhtml" class="button maximal" href="post.php?id='.$post_id.'&xconv=1">'.416 '<a id="convert-xhtml" class="button" href="post.php?id='.$post_id.'&xconv=1">'. 417 417 __('Convert to XHTML').'</a>' : '').'</p></div>')), 418 418 'metas-box' => array( … … 485 485 486 486 "post_excerpt" => 487 '<p class="area" id="excerpt-area"><label for="post_excerpt">'.__('Excerpt:').' <span class="form-note">'.487 '<p class="area" id="excerpt-area"><label for="post_excerpt">'.__('Excerpt:').' <span class="form-note">'. 488 488 __('Introduction to the post.').'</span></label> '. 489 489 form::textarea('post_excerpt',50,5,html::escapeHTML($post_excerpt)). … … 497 497 498 498 "post_notes" => 499 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').' <span class="form-note">'.499 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').' <span class="form-note">'. 500 500 __('Unpublished notes.').'</span></label>'. 501 501 form::textarea('post_notes',50,5,html::escapeHTML($post_notes)). … … 548 548 549 549 foreach ($sidebar_items as $id => $c) { 550 echo '<div id="'.$id.'" class=" box">'.550 echo '<div id="'.$id.'" class="sb-box">'. 551 551 '<h4>'.$c['title'].'</h4>'; 552 552 foreach ($c['items'] as $e_name=>$e_content) { … … 601 601 602 602 echo 603 '<div id="comments" class=" multi-part" title="'.__('Comments').'">';603 '<div id="comments" class="clear multi-part" title="'.__('Comments').'">'; 604 604 605 605 # --BEHAVIOR-- adminCommentsActionsCombo … … 608 608 $has_action = !empty($combo_action) && (!$trackbacks->isEmpty() || !$comments->isEmpty()); 609 609 echo 610 '<p class="top-add"><a class="button add onblog_link" href="#comment-form">'.__('Add a comment').'</a></p>';610 '<p class="top-add"><a class="button add" href="#comment-form">'.__('Add a comment').'</a></p>'; 611 611 612 612 if ($has_action) {
Note: See TracChangeset
for help on using the changeset viewer.