Created
August 22, 2013 01:35
-
-
Save toddlahman/6302280 to your computer and use it in GitHub Desktop.
Revisions
-
toddlahman created this gist
Aug 22, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ <?php function tl_save_error() { update_option( 'plugin_error', ob_get_contents() ); } add_action( 'activated_plugin', 'tl_save_error' ); /* Then to display the error message: */ echo get_option( 'plugin_error' ); /* Or you could do the following: */ file_put_contents( 'C:\errors' , ob_get_contents() ); // or any suspected variable