[sword-svn] r1747 - trunk/src/modules/filters

tbiggs at crosswire.org tbiggs at crosswire.org
Sun Mar 20 13:10:25 MST 2005


Author: tbiggs
Date: 2005-03-20 13:10:25 -0700 (Sun, 20 Mar 2005)
New Revision: 1747

Modified:
   trunk/src/modules/filters/thmlhtmlhref.cpp
Log:
added a ; to the end of &nbsp

Modified: trunk/src/modules/filters/thmlhtmlhref.cpp
===================================================================
--- trunk/src/modules/filters/thmlhtmlhref.cpp	2005-03-19 20:43:40 UTC (rev 1746)
+++ trunk/src/modules/filters/thmlhtmlhref.cpp	2005-03-20 20:10:25 UTC (rev 1747)
@@ -124,11 +124,11 @@
 						refList = u->lastTextNode;
 					SWBuf version = tag.getAttribute("version");
 					
-					buf.appendFormatted("&nbsp<a href=\"passagestudy.jsp?action=showRef&type=scripRef&value=%s&module=%s\">",
+					buf.appendFormatted("&nbsp;<a href=\"passagestudy.jsp?action=showRef&type=scripRef&value=%s&module=%s\">",
 						(refList.length()) ? URL::encode(refList.c_str()).c_str() : "", 
 						(version.length()) ? URL::encode(version.c_str()).c_str() : "");
 					buf += u->lastTextNode.c_str();
-					buf += "</a>&nbsp";
+					buf += "</a>&nbsp;";
 				}
 				else {
 					SWBuf footnoteNumber = u->startTag.getAttribute("swordFootnote");



More information about the sword-cvs mailing list