Changeset 1172 for FCKeditor.Net/trunk/FCKeditorConfigurations.cs
- Timestamp:
- 2007-12-04 13:26:38 (10 months ago)
- Files:
-
- 1 modified
-
FCKeditor.Net/trunk/FCKeditorConfigurations.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor.Net/trunk/FCKeditorConfigurations.cs
r1167 r1172 70 70 } 71 71 72 // To avoid the "A potentially dangerous Request.Form value was 73 // detected from the client" error, forcing developers to set 74 // validateRequest=false in their pages, we are forcing 75 // HtmlEncodeOutput to "true", if not defined. (#294) 76 if ( !_Configs.Contains( "HtmlEncodeOutput" ) ) 77 { 78 if ( osParams.Length > 0 ) 79 osParams.Append( "&" ) ; 80 81 osParams.Append( "HtmlEncodeOutput=true" ) ; 82 } 83 72 84 return osParams.ToString() ; 73 85 }