Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Mods & Themes (http://www.bvlist.com/forumdisplay.php?f=109)
-   -   Stop Links Opening In Shoutbox (http://www.bvlist.com/showthread.php?t=8921)

Chez 26th February 2013 17:10

Stop Links Opening In Shoutbox
 
In global.php replace the old format_urls function with this one:

PHP Code:

function format_urls($s)
{
   return 
preg_replace(
       
"/(\A|[^=\]'\"a-zA-Z0-9])((http|ftp|https|ftps|irc):\/\/[^()<>\s]+)/i",
       
"\\1<a href=\"\\2\" target='_blank'>\\2</a>"$s);



and replace the old url bbcodes with this:

PHP Code:

// [url=http://www.example.com]Text[/url]
   
$s preg_replace(
      
"/\[url=([^()<>\s]+?)\]((\s|.)+?)\[\/url\]/i",
      
"<a href=\"\\1\" target='_blank'>\\2</a>"$s);

   
// [url]http://www.example.com[/url]
   
$s preg_replace(
      
"/\[url\]([^()<>\s]+?)\[\/url\]/i",
      
"<a href=\"\\1\" target='_blank'>\\1</a>"$s); 


That's it!


All times are GMT +2. The time now is 10:36.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.