##################################################### MirrorChecker Vbulletin 4 Integration Instructions Support & Questions - http://MirrorChecker.com ##################################################### Install Time > 2mins IN includes/class_bbcode.php FIND function handle_bbcode_code($code) { global $vbulletin, $vbphrase, $show; // remove unnecessary line breaks and escaped quotes $code = str_replace(array('
', '
'), array('', ''), $code); $code = $this->strip_front_back_whitespace($code, 1); if ($this->printable) { $code = $this->emulate_pre_tag($code); $template = 'bbcode_code_printable'; } else { $blockheight = $this->fetch_block_height($code); $template = 'bbcode_code'; } $templater = vB_Template::create($template); $templater->register('blockheight', $blockheight); $templater->register('code', $code); return $templater->render(); } REPLACE WITH function handle_bbcode_code($code) { global $vbulletin, $vbphrase, $show; $code2 = ''; $codeChunks = explode("\n", $code); foreach($codeChunks as $i => $chunk) { $code2 .= "$chunk - Check Link\n"; } $code2 = str_replace(array('
', '
'), array('', ''), $code2); $code2 = $this->strip_front_back_whitespace($code2, 1); if ($this->printable) { $code2 = $this->emulate_pre_tag($code2); $template = 'bbcode_code_printable'; } else { $blockheight = $this->fetch_block_height($code2); $template = 'bbcode_code'; } $templater = vB_Template::create($template); $templater->register('blockheight', $blockheight); $templater->register('code', $code2); return $templater->render(); } SAVE AND CLOSE Open admincp and Rebuild the Post Cache ADMINCP > MAINTENANCE > UPDATE COUNTERS > REBUILD POST CACHE --------------