Viewing 1 replies (of 1 total)
  • open the plugin file “execphp.php”
    replace

    add_action('widgets_init', create_function('', 'return register_widget("PHP_Code_Widget");'));
    

    with

    function php_code_widget_init (){
        return register_widget('PHP_Code_Widget');
    }
    
    add_action('widgets_init', 'php_code_widget_init');
    
    • This reply was modified 3 years, 5 months ago by ghost994.
Viewing 1 replies (of 1 total)
  • The topic ‘Error Details – PHP Code Widget’ is closed to new replies.