Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1663)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1664)
@@ -50,4 +50,6 @@
 			or typing after a placeholder with the placeholder plugin will no longer generate 
 			colored text.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1952">#1952</a>] Fixed
+			an issue in FCKTools.FixCssUrls that, other than wrong, was breaking Opera.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/_source/internals/fcktools.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fcktools.js	(revision 1663)
+++ /FCKeditor/trunk/editor/_source/internals/fcktools.js	(revision 1664)
@@ -46,5 +46,5 @@
 	return cssStyles.replace( /url\s*\(([\s'"]*)(.*?)([\s"']*)\)/g, function( match, opener, path, closer )
 		{
-			if ( /^\/|^\w?:/.test() )
+			if ( /^\/|^\w?:/.test( path ) )
 				return match ;
 			else
