Coldfusion variable in img tag source produces weird output
Hey again. Straight to the point as i'm getting grey haired caused of this:
<cfscript>objMonkehTweet2 = createObject('component','cf_components.coldfumonkeh.monkehTweet').init('#get_info.user_name#','#ToString(BinaryDecode(get_info.pass_word, "base64"))#',true);
result2 = objMonkehTweet2.getUserDetails(id='#get_info.user_name#');
</cfscript>
<cfoutput>#result2.user.profile_image_url#</cfoutput>
<div id="twitter_label"><span style="float:left">Update IGES Twitter status:</span><span style="float:right"><a href="upd_news.cfm">add new slide</a></span></div>
<img name="" src="<cfoutput>#result2.user.profile_image_url#</cfoutput>" width="44" height="44" style="border:0; float:left" />
(script calls twitter API)
result:

As you see the script output displays correct path to the the image. However, exactly the same cfoutput inserted inside image tag produces this weird output with the whole address printed out and image tag end in the end. There are no " > or other similar symbols in the address as you can see so why?????
cheers,
Simon
