summaryrefslogtreecommitdiffstats
path: root/wp-includes/js
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-10-06 14:22:36 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-10-06 14:22:36 +0000
commit27893d032fa693cece9531111771a5653f7f31ed (patch)
tree188e8a7258f004f0e124583732b7eab1ff3908ee /wp-includes/js
parentaa3b3b4a557f0d59d76a479a4f9d843a09eb0a33 (diff)
downloadwordpress-mu-27893d032fa693cece9531111771a5653f7f31ed.tar.gz
wordpress-mu-27893d032fa693cece9531111771a5653f7f31ed.tar.xz
wordpress-mu-27893d032fa693cece9531111771a5653f7f31ed.zip
Run string through wp_specialchars()
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@795 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/js')
-rw-r--r--wp-includes/js/list-manipulation-js.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-includes/js/list-manipulation-js.php b/wp-includes/js/list-manipulation-js.php
index 6c89d5f..a6aa5ee 100644
--- a/wp-includes/js/list-manipulation-js.php
+++ b/wp-includes/js/list-manipulation-js.php
@@ -52,7 +52,7 @@ Object.extend(listMan.prototype, {
tempObj.showLink = id;
});
}
- ajaxAdd.myResponseElement.update(tempObj.showLink ? ( "<div id='jumplink' class='updated fade'><p><a href='#" + what + '-' + tempObj.showLink + "'><?php _e('Jump to new item'); ?></a></p></div>" ) : '');
+ ajaxAdd.myResponseElement.update(tempObj.showLink ? ( "<div id='jumplink' class='updated fade'><p><a href='#" + what + '-' + tempObj.showLink + "'><?php echo wp_specialchars(__('Jump to new item'), 1); ?></a></p></div>" ) : '');
if ( tempObj.addComplete && typeof tempObj.addComplete == 'function' )
tempObj.addComplete( what, where, update, transport );
tempObj.recolorList();