@vbplusme, u can get rid of this error by commenting line (vbbridge.php)
PHP Code:
echo "<div class=\"updated\">\n" . "<p>" . "<strong>" . __('Options saved.', 'vbridge') . "</strong>" . "</p>\n" . "</div>\n";
i.e. the code block will show like:
PHP Code:
### Update settings.
if ($_POST['action'] == 'update_vbridge_settings') {
foreach ($_POST as $key => $value) {
update_option('vbb_' . $key, $value);
}
//echo "<div class=\"updated\">\n" . "<p>" . "<strong>" . __('Options saved.', 'vbridge') . "</strong>" . "</p>\n" . "</div>\n";
}