Changeset 1162
- Timestamp:
- 2007-12-01 16:47:43 (2 years ago)
- Location:
- FCKeditor.Net/trunk
- Files:
-
- 2 modified
-
FCKeditor.cs (modified) (4 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Net/trunk/FCKeditor.cs
r1161 r1162 70 70 /// </p> 71 71 /// <p> 72 /// The default value is "/ FCKeditor/".72 /// The default value is "/fckeditor/". 73 73 /// </p> 74 74 /// <p> … … 79 79 /// <configuration> 80 80 /// <appSettings> 81 /// <add key="FCKeditor:BasePath" value="/scripts/ FCKeditor/" />81 /// <add key="FCKeditor:BasePath" value="/scripts/fckeditor/" /> 82 82 /// </appSettings> 83 83 /// </configuration> … … 85 85 /// </p> 86 86 /// </summary> 87 [ DefaultValue( "/ FCKeditor/" ) ]87 [ DefaultValue( "/fckeditor/" ) ] 88 88 public string BasePath 89 89 { … … 95 95 o = System.Configuration.ConfigurationSettings.AppSettings["FCKeditor:BasePath"] ; 96 96 97 return ( o == null ? "/ FCKeditor/" : (string)o ) ;97 return ( o == null ? "/fckeditor/" : (string)o ) ; 98 98 } 99 99 set { ViewState["BasePath"] = value ; } -
FCKeditor.Net/trunk/_whatsnew.html
r1161 r1162 44 44 Visual Studio 2005</strong>. It's easier now to open the source in your preferred environment. Builds will 45 45 end up in the "1.1" (VS2003) and "2.0" (VS2005) folders inside bin/Debug and bin/Release. </li> 46 <li>The BasePath property now defaults to "/fckeditor/" ("/FCKeditor/" previously).</li> 46 47 </ul> 47 48 <p>