PUM_Analytics::serve_no_content()

Returns a 204 no content header.


Description Description


Source Source

File: classes/Analytics.php

	public static function serve_no_content() {
		header( "HTTP/1.0 204 No Content" );
		header( 'Content-Type: image/gif' );
		header( 'Content-Length: 0' );
		exit;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.