Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 11347)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -525,7 +525,7 @@
 	$comment_post_url = get_edit_post_link( $comment->comment_post_ID );
 	$comment_post_title = get_the_title( $comment->comment_post_ID );
 	$comment_post_link = "<a href='$comment_post_url'>$comment_post_title</a>";
-	$comment_link = '<a class="comment-link" href="' . get_comment_link() . '">#</a>';
+	$comment_link = '<a class="comment-link" href="' . clean_url(get_comment_link()) . '">#</a>';
 
 	$delete_url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) );
 	$approve_url = clean_url( wp_nonce_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "approve-comment_$comment->comment_ID" ) );
Index: wp-admin/includes/post.php
===================================================================
--- wp-admin/includes/post.php	(revision 11347)
+++ wp-admin/includes/post.php	(working copy)
@@ -1370,6 +1370,7 @@
 ?>
 
 <script type="text/javascript">
+/* <![CDATA[ */
 <?php if ( $ext_plugins ) echo "$ext_plugins\n"; ?>
 <?php if ( $concatenate_scripts ) { ?>
 tinyMCEPreInit.go();
@@ -1377,6 +1378,7 @@
 (function(){var t=tinyMCEPreInit,sl=tinymce.ScriptLoader,ln=t.mceInit.language,th=t.mceInit.theme,pl=t.mceInit.plugins;sl.markDone(t.base+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'_dlg.js');tinymce.each(pl.split(','),function(n){if(n&&n.charAt(0)!='-'){sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'.js');sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'_dlg.js');}});})();
 <?php } ?>
 tinyMCE.init(tinyMCEPreInit.mceInit);
+/* ]]> */
 </script>
 <?php
 }
