Changeset 1312:9b954dbdf09a for admin/post.php
- Timestamp:
- 08/08/13 21:29:17 (12 years ago)
- Branch:
- default
- Parents:
- 1311:b57043a88153 (diff), 1290:de23a6996243 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r1288 r1312 386 386 if ($can_edit_post) 387 387 { 388 echo '<div class="multi-part" title="'. __('Edit entry').'" id="edit-entry">';388 echo '<div class="multi-part" title="'.($post_id ? __('Edit entry') : __('New entry')).'" id="edit-entry">'; 389 389 echo '<form action="post.php" method="post" id="entry-form">'; 390 390 echo '<div id="entry-wrapper">'; … … 392 392 393 393 echo 394 '<p class="col"><label class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:'). 394 '<p class="col"><label class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 395 395 form::field('post_title',20,255,html::escapeHTML($post_title),'maximal'). 396 '</ label></p>'.396 '</p>'. 397 397 398 398 '<p class="area" id="excerpt-area"><label for="post_excerpt">'.__('Excerpt:').'</label> '. … … 405 405 '</p>'. 406 406 407 '<p class="area" id="notes-area"><label for="post_notes">'.__(' Notes:').'</label>'.407 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').'</label>'. 408 408 form::textarea('post_notes',50,5,html::escapeHTML($post_notes)). 409 409 '</p>'; -
admin/post.php
r1311 r1312 334 334 } 335 335 336 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">' .$page_title;336 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'; 337 337 if ($post_id) { 338 338 switch ($post_status) { … … 352 352 $img_status = ''; 353 353 } 354 echo ' “'.$post_title.'”'.' '.$img_status; 354 $edit_entry_str = __('Edit entry “%s”'); 355 echo sprintf($edit_entry_str, html::escapeHTML($post_title)).' '.$img_status; 356 } else { 357 echo $page_title; 355 358 } 356 359 echo '</span></h2>';
Note: See TracChangeset
for help on using the changeset viewer.