Skip to content

Commit

Permalink
rlm entity not so Windows friendly. Use perios instead. see #6813
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@8330 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ryan committed Jul 14, 2008
1 parent b167244 commit 1e6bf47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wp-admin/press-this.php
Expand Up @@ -394,7 +394,7 @@ function show(tab_name) {
set_menu('text');
set_title('<?php _e('Post') ?>');
<?php if ($selection) { ?>
set_editor('<?php echo $selection; ?><p><a href="<?php echo $url ?>"><?php echo $title; ?></a> &rlm;</p>');
set_editor('<?php echo $selection; ?><p><a href="<?php echo $url ?>"><?php echo $title; ?></a>.</p>');
<?php } else { ?>
set_editor('<p><a href="<?php echo $url ?>"><?php echo $title; ?></a></p>');
<?php } ?>
Expand Down Expand Up @@ -431,7 +431,7 @@ function show(tab_name) {
?>
jQuery('#embed_code').prepend('<?php echo htmlentities($content); ?>');

set_editor('<a href="<?php echo $url ?>"><?php echo $title; ?></a> &rlm;');
set_editor('<a href="<?php echo $url ?>"><?php echo $title; ?></a>.');
});
return false;
break;
Expand Down Expand Up @@ -505,7 +505,7 @@ function show(tab_name) {
<div class="editor_area">
<h2 id="content_type"><label for="content"><?php _e('Post') ?></label></h2>
<div class="editor-container">
<textarea name="content" id="content" style="width:100%;" class="mceEditor"><?php if ($selection) { echo wp_richedit_pre($selection); } ?><a href="<?php echo $url ?>"><?php echo $title; ?></a> &rlm;</textarea>
<textarea name="content" id="content" style="width:100%;" class="mceEditor"><?php if ($selection) { echo wp_richedit_pre($selection); } ?><a href="<?php echo $url ?>"><?php echo $title; ?></a>.</textarea>
</div>
</div>
</div>
Expand Down

0 comments on commit 1e6bf47

Please sign in to comment.