Index: properties/HtmlHelperProperty.cfc
===================================================================
--- MachII/1.8.0.1978/properties/HtmlHelperProperty.cfc	(revision 60382)
+++ MachII/1.8.0.1978/properties/HtmlHelperProperty.cfc	(working copy)
@@ -746,9 +746,10 @@
 			hint="An unresolved asset path to resolve to a full web-root path." />
 		
 		<cfset var path = arguments.assetPath />
+		<cfset var urlBase = getProperty("urlBase") />
 		
 		<!--- Don't do resolution on assets that are dynamically served --->
-		<cfif NOT path.startsWith(getProperty("urlBase"))>
+		<cfif Len(urlBase) EQ 0 OR NOT path.startsWith(urlBase)>
 			<!--- Get path if the asset path is not a full path from webroot --->
 			<cfif NOT path.startsWith("/")>
 				<cfif arguments.assetType EQ "js">