MagpieRSS::error

Advertisement

Syntax Syntax

MagpieRSS::error( $errormsg,  $lvl = E_USER_WARNING )

Source Source

File: wp-includes/rss.php

	function error( $errormsg, $lvl = E_USER_WARNING ) {
		if ( MAGPIE_DEBUG ) {
			trigger_error( $errormsg, $lvl);
		} else {
			error_log( $errormsg, 0);
		}
	}

}

Advertisement

Advertisement

Leave a Reply