Viewing 1 replies (of 1 total)
  • Thread Starter deltafactory

    (@deltafactory)

    Here’s a diff required to remove the errors that now appear as part of the plugin’s execution:

    @@ -594,8 +594,8 @@ $m_tooltipsArray = get_option('tooltipsarray');
     //2014-08 3.4.7 add tooltips widget functionality
     function TooltipsWidgetInit()
     {
    -	register_sidebar_widget('Tooltips', tooltipsSidebar);
    -	register_widget_control('Tooltips', tooltipsControl, 300, 200);
    +	wp_register_sidebar_widget('tooltips', 'Tooltips', 'tooltipsSidebar');
    +	wp_register_widget_control('tooltips', 'Tooltips', 'tooltipsControl', array( 'width' => 300, 'height' => 200 ));
     }
    
     function tooltipsControl()
Viewing 1 replies (of 1 total)

The topic ‘Do not override error reporting setting’ is closed to new replies.