Changeset 537:334ae2e6917d for admin/post.php
- Timestamp:
- 07/09/11 20:18:20 (14 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r536 r537 314 314 $post_excerpt = $post_excerpt_xhtml; 315 315 $post_content = $post_content_xhtml; 316 $post_title = $post_title_xhtml; 316 317 $post_format = 'xhtml'; 317 318 … … 319 320 } 320 321 321 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'.$page_title.' </span>';322 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'.$page_title.' “'.$post_title.'”</span></h2>'; 322 323 323 324 if ($post_id && $post->post_status == 1) { 324 echo ' -<a id="post-preview" href="'.$post->getURL().'" class="button">'.__('View entry').'</a>';325 echo '<p><a id="post-preview" href="'.$post->getURL().'" class="button">'.__('View entry').'</a>'; 325 326 } elseif ($post_id) { 326 327 $preview_url = … … 329 330 http::browserUID(DC_MASTER_KEY.$core->auth->userID().$core->auth->getInfo('user_pwd')). 330 331 '/'.$post->post_url; 331 echo ' -<a id="post-preview" href="'.$preview_url.'" class="button">'.__('Preview entry').'</a>';332 } 333 334 echo '</ h2>';332 echo '<p><a id="post-preview" href="'.$preview_url.'" class="button">'.__('Preview entry').'</a>'; 333 } 334 335 echo '</p>'; 335 336 336 337 if ($post_id)
Note: See TracChangeset
for help on using the changeset viewer.