Changeset 2974:d0d25c20f355
- Timestamp:
- 03/25/15 08:45:57 (10 years ago)
- Branch:
- 2.7
- Children:
- 2975:2833f573a998, 2976:04a121a3fb3c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r2926 r2974 447 447 448 448 if ($post_id && $post->post_status == 1) { 449 echo '<p><a class="onblog_link outgoing" href="'.$post->getURL().'" title="'. $post_title.'">'.__('Go to this entry on the site').' <img src="images/outgoing-blue.png" alt="" /></a></p>';449 echo '<p><a class="onblog_link outgoing" href="'.$post->getURL().'" title="'.html::escapeHTML($post_title).'">'.__('Go to this entry on the site').' <img src="images/outgoing-blue.png" alt="" /></a></p>'; 450 450 } 451 451 if ($post_id) -
plugins/pages/page.php
r2926 r2974 348 348 $img_status = ''; 349 349 } 350 $edit_entry_title = '“'. $post_title.'”'.' '.$img_status;350 $edit_entry_title = '“'.html::escapeHTML($post_title).'”'.' '.$img_status; 351 351 } else { 352 352 $edit_entry_title = $page_title; … … 383 383 384 384 if ($post_id && $post->post_status == 1) { 385 echo '<p><a class="onblog_link outgoing" href="'.$post->getURL().'" title="'. $post_title.'">'.__('Go to this page on the site').' <img src="images/outgoing-blue.png" alt="" /></a></p>';385 echo '<p><a class="onblog_link outgoing" href="'.$post->getURL().'" title="'.html::escapeHTML($post_title).'">'.__('Go to this page on the site').' <img src="images/outgoing-blue.png" alt="" /></a></p>'; 386 386 } 387 387
Note: See TracChangeset
for help on using the changeset viewer.