signup_nonce_check

Advertisement

Summery Summery

Process the signup nonce created in signup_nonce_fields().

Syntax Syntax

signup_nonce_check( array $result )

Parameters Parameters

$result

(Required)

Return Return

(array)

Source Source

File: wp-includes/ms-functions.php

	if ( strlen( $upload['bits'] ) > ( KB_IN_BYTES * get_site_option( 'fileupload_maxk', 1500 ) ) ) {
		/* translators: %s: Maximum allowed file size in kilobytes. */
		return sprintf( __( 'This file is too big. Files must be less than %s KB in size.' ) . '<br />', get_site_option( 'fileupload_maxk', 1500 ) );
	}

	return $upload;
}

/**
 * Add a nonce field to the signup page.
 *

Advertisement

Changelog Changelog

Changelog
Version Description
MU (3.0.0) Introduced.

Advertisement

Leave a Reply