Index: wp-includes/functions.php
===================================================================
--- wp-includes/functions.php	(revision 12370)
+++ wp-includes/functions.php	(working copy)
@@ -1836,7 +1836,7 @@
 		echo $nonce_field;
 
 	if ( $referer )
-		wp_referer_field( $echo, 'previous' );
+		wp_referer_field( $echo );
 
 	return $nonce_field;
 }
@@ -1854,7 +1854,7 @@
  * @param bool $echo Whether to echo or return the referer field.
  * @return string Referer field.
  */
-function wp_referer_field( $echo = true) {
+function wp_referer_field( $echo = true ) {
 	$ref = esc_attr( $_SERVER['REQUEST_URI'] );
 	$referer_field = '<input type="hidden" name="_wp_http_referer" value="'. $ref . '" />';
 

