Open up sources/lib/usercp_functions.php Find & Delete: function do_shoutbox_settings() { global $ibforums, $DB, $std, $print, $HTTP_POST_VARS; //------------------------------------- // Nawty, Nawty! //------------------------------------- if ($ibforums->input['auth_key'] != $this->class->md5_check ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'del_post') ); } if ($HTTP_POST_VARS['act'] == "") { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'complete_form' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_shoutboxtype'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_showavatars'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_showshouttime'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_showsmiliest'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_showtdshouters'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ( ! preg_match( "/^\d+$/", $ibforums->input['sb_showtpshouters'] ) ) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'poss_hack_attempt' ) ); } //+---------------------------------------- if ($ibforums->vars['sb_usesbcard'] == 1) { $db_string = $DB->compile_db_update_string( array ( 'sb_shoutboxtype' => $ibforums->input['sb_shoutboxtype'], 'sb_showavatars' => $ibforums->input['sb_showavatars'], 'sb_showshouttime' => $ibforums->input['sb_showshouttime'], 'sb_showsmiliest' => $ibforums->input['sb_showsmiliest'], 'sb_showtdshouters' => $ibforums->input['sb_showtdshouters'], 'sb_showtpshouters' => $ibforums->input['sb_showtpshouters'], 'sb_refresh' => $ibforums->input['sb_refresh'], 'sb_sbcardstyle' => $ibforums->input['sb_sbcardstyle'], 'sb_defaultcolor' => $ibforums->input['sb_defaultcolor'], ) ); } else { $db_string = $DB->compile_db_update_string( array ( 'sb_shoutboxtype' => $ibforums->input['sb_shoutboxtype'], 'sb_showavatars' => $ibforums->input['sb_showavatars'], 'sb_showshouttime' => $ibforums->input['sb_showshouttime'], 'sb_showsmiliest' => $ibforums->input['sb_showsmiliest'], 'sb_showtdshouters' => $ibforums->input['sb_showtdshouters'], 'sb_showtpshouters' => $ibforums->input['sb_showtpshouters'], 'sb_refresh' => $ibforums->input['sb_refresh'], 'sb_defaultcolor' => $ibforums->input['sb_defaultcolor'], ) ); } $DB->query("UPDATE ibf_members SET $db_string WHERE id='".$this->class->member['id']."'"); $print->redirect_screen( $ibforums->lang['set_updated'], "act=UserCP&CODE=40" ); } Save & Close sources/lib/usercp_functions.php