Remove tabs from JS, props duck_, see #18206

git-svn-id: http://svn.automattic.com/wordpress/trunk@18489 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2011-07-31 08:44:29 +00:00
parent 670980920d
commit 07bf8b352e
1 changed files with 2 additions and 2 deletions

View File

@ -1493,10 +1493,10 @@ $p = array();
foreach ( $post_params as $param => $val ) {
$val = esc_js( $val );
$p[] = "\t\t'$param' : '$val'";
$p[] = "'$param' : '$val'";
}
$post_params_str = implode( ", \n", $p );
$post_params_str = implode( ',', $p ). "\n";
?>
<script type="text/javascript">