Changeset 1503 for FCKeditor/trunk/fckeditor.py
- Timestamp:
- 2008-02-11 19:10:45 (8 months ago)
- Files:
-
- 1 modified
-
FCKeditor/trunk/fckeditor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/fckeditor.py
r887 r1503 58 58 def CreateHtml(self): 59 59 HtmlValue = escape(self.Value) 60 Html = " <div>"60 Html = "" 61 61 62 62 if (self.IsCompatible()): … … 106 106 HtmlValue 107 107 ) 108 Html += "</div>"109 108 return Html 110 109