################################################################# 
## MOD Title: Reverse Yahoo Newsfeed BBCode Broken by phpBB 2.0.17 Update.... 
## MOD Author: Test < N/A > (N/A) N/A 
## MOD Description: 
##		
##		This will make it so that the Yahoo Newsfeed links will work again
##		but you should use this at your own risk.  It reverses one line that 
##		was changed in the 2.0.16 to 2.0.17 Update which was supposedly modified
##		for security reasons.  This only reverses one line of code back to what it was 
##		in phpBB 2.0.16.  They may be changing this line again in future versions,
##		so you may run into minor trouble figuring out what to change if they actually
##		fix this bug that they created in 2.0.17...
##		
## MOD Version: 1.0.0 
## 
## Installation Level: Easy
## Installation Time: 1 Minute 
## Files To Edit: 
##		includes/bbcode.php
##
## Included Files: 0
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
# 
#-----[ OPEN ]--------------------------------------------- 
# 
includes/bbcode.php

#
#-----[ FIND ]---------------------------------------------
# Line 203
	// [url=xxxx://www.phpbb.com]phpBB[/url] code..
	$patterns[] = "#\[url=([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*?)\]([^?\n\r\t].*?)\[/url\]#is";
	$replacements[] = $bbcode_tpl['url3'];
#
#-----[ REPLACE WITH ]---------------------------------------------
# 
	// [url=xxxx://www.phpbb.com]phpBB[/url] code..
	$patterns[] = "#\[url=([\w]+?://[^ \"\n\r\t<]*?)\]([^?\n\r\t].*?)\[/url\]#is";
	$replacements[] = $bbcode_tpl['url3'];
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM