PUM_Ajax::serve_no_content()
Returns a 204 no content header.
Contents
Description Description
Source Source
File: classes/Ajax.php
public static function serve_no_content() { header( "HTTP/1.0 204 No Content" ); header( 'Content-Type: image/gif' ); header( 'Content-Length: 0' ); exit; }
Expand full source code Collapse full source code View on Trac