Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 268)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 269)
@@ -63,4 +63,6 @@
 		<li>Fixed a type that was breaking the ColdFusion SpellerPages integration file when
 			no spelling errors were found.</li>
+		<li>The ColdFusion SpellerPages integration was not working it Aspell was installed
+			in a directory with spaces in the name.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm	(revision 268)
+++ /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm	(revision 269)
@@ -13,5 +13,5 @@
 The following variables values must reflect your installation needs.
 --->
-<cfset apsell_dir	= "c:\aspell\bin">
+<cfset apsell_dir	= "C:\Program Files\Aspell\bin">
 
 <cfset lang			= "en_US">
@@ -19,5 +19,5 @@
 
 <!--- Be sure the temporary folder exists --->
-<cfset tempFolder	= "c:\aspell\temp">
+<cfset tempFolder	= "C:\Windows\Temp">
 <cfset tempfile		= "spell_#randrange(1,10000)#">
 
@@ -71,5 +71,5 @@
 
 <cfsavecontent variable="food">
-<cfexecute name="C:\WINDOWS\SYSTEM32\cmd.exe" arguments="/c type #tempFolder#\#tempfile#.txt | #apsell_dir#\aspell #aspell_opts#" timeout="100"></cfexecute>
+<cfexecute name="C:\WINDOWS\SYSTEM32\cmd.exe" arguments='/c type #tempFolder#\#tempfile#.txt | "#apsell_dir#\aspell" #aspell_opts#' timeout="100"></cfexecute>
 </cfsavecontent>
 
