|
From: <tob...@us...> - 2014-06-10 21:38:10
|
Revision: 8460
http://sourceforge.net/p/bigdata/code/8460
Author: tobycraig
Date: 2014-06-10 21:38:02 +0000 (Tue, 10 Jun 2014)
Log Message:
-----------
Fixed variable made global instead of local
Modified Paths:
--------------
branches/WORKBENCH_QUERY_HISTORY/bigdata-war/src/html/js/workbench.js
Modified: branches/WORKBENCH_QUERY_HISTORY/bigdata-war/src/html/js/workbench.js
===================================================================
--- branches/WORKBENCH_QUERY_HISTORY/bigdata-war/src/html/js/workbench.js 2014-06-10 20:59:43 UTC (rev 8459)
+++ branches/WORKBENCH_QUERY_HISTORY/bigdata-war/src/html/js/workbench.js 2014-06-10 21:38:02 UTC (rev 8460)
@@ -1179,7 +1179,7 @@
uri = '<' + uri + '>';
}
}
- output = escapeHTML(uri).replace(/\n/g, '<br>');
+ var output = escapeHTML(uri).replace(/\n/g, '<br>');
if(col.type == 'uri' || col.type == 'sid') {
output = '<a href="' + buildExploreHash(uri) + '">' + output + '</a>';
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|