Uplouder

Make PHPBB3 codded link clikable.

Apr 18th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. You can check the includes\bbcode.php file, look for
  2.  
  3. function bbcode_second_pass_code($type, $code)  
  4.  
  5. Add the following line after the three lines starting with $code:
  6.  
  7.  
  8. $code = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([-\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1">$1</a>', $code);
Advertisement
Add Comment
Please, Sign In to add comment