Symbian.org/Forums.js
changeset 6 5e0dece09f96
parent 5 3a3bac500145
child 10 07ac2f6a36a9
--- a/Symbian.org/Forums.js	Tue Jun 16 10:23:34 2009 +0100
+++ b/Symbian.org/Forums.js	Mon Jul 13 10:42:26 2009 +0100
@@ -479,17 +479,17 @@
 		}
 		case 'quote': return '<blockquote><i>' + tagContent + '</i></blockquote>';
 		case 'url': {
-			var eqsign = fulltag.indexOf("=");
+			var eqsign = fulltag.indexOf("=");  // onclick=\"openURL('" + item.url + "');
 			if ( eqsign > -1 ) {
-				return '<div class="FeedItemLink"><a href="JavaScript:void(0)" onclick="openURL( ' 
+				return "<div class=\"FeedItemLink\"><a href=\"JavaScript:void(0)\" onclick=\"openURL( '"
 				+ fulltag.substring(eqsign+1)
-				+ '") ><i>'
+				+ "')\" ><i>"
 				+ tagContent
 				+ '</i></a></div>'; 
 			} else {
-				return '<div class="FeedItemLink"><a href="JavaScript:void(0)" onclick="openURL( ' 
+				return "<div class=\"FeedItemLink\"><a href=\"JavaScript:void(0)\" onclick=\"openURL( '"
 				+ tagContent
-				+ '") ><i>'
+				+ "')\" ><i>"
 				+ tagContent
 				+ '</i></a></div>'; 
 			}