Hey Guys,
I downloaded the latest version. When I posted my fix I think this one wasn’t out. Regardless this one showed errors with WP_Debug mode on. I updated the following code and everything works for me.
Full code: https://gist.github.com/2698146
In function seo_friendly_images_options_page():
// Author did not account for $status being an empty array.
// I am checking to see if the value exists if not I set the vars to empty.
$theVersion = ( isset($status[1]) ? $status[1] : ”);
$theMessage = ( isset($status[3]) ? $status[3] : ”);
In function seo_friendly_images_options_page():
// Author created variable $actionurl but then called $action_url.
// I updated the variable name to reflect the call as it is easier to read this way.
$action_url=$_SERVER[‘REQUEST_URI’];
Note: I will try to get the author to incorporate these changes and release a new version so we won’t have to bother with this.
Full code: https://gist.github.com/2698146