RSSCache::error

Advertisement

Syntax Syntax

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

Source Source

File: wp-includes/rss.php

			trigger_error( $errormsg, $lvl);
		}
		else {
			error_log( $errormsg, 0);
		}
	}
			function debug ($debugmsg, $lvl=E_USER_NOTICE) {
		if ( MAGPIE_DEBUG ) {
			$this->error("MagpieRSS [debug] $debugmsg", $lvl);
		}
	}
}

Advertisement

Advertisement

Leave a Reply