Revision 377
Added by Matthias almost 18 years ago
modify_post.php | ||
---|---|---|
111 | 111 |
<td valign="top"><?php echo $TEXT['SHORT']; ?>:</td> |
112 | 112 |
<td> |
113 | 113 |
<?php |
114 |
show_wysiwyg_editor("short","short",$fetch_content['content_short'],"100%","135px");
|
|
114 |
show_wysiwyg_editor("short","short",htmlspecialchars($fetch_content['content_short']),"100%","135px");
|
|
115 | 115 |
?> |
116 | 116 |
</td> |
117 | 117 |
</tr> |
... | ... | |
119 | 119 |
<td valign="top"><?php echo $TEXT['LONG']; ?>:</td> |
120 | 120 |
<td> |
121 | 121 |
<?php |
122 |
show_wysiwyg_editor("long","long",$fetch_content['content_long'],"100%","300px");
|
|
122 |
show_wysiwyg_editor("long","long",htmlspecialchars($fetch_content['content_long']),"100%","300px");
|
|
123 | 123 |
?> |
124 | 124 |
</td> |
125 | 125 |
</tr> |
Also available in: Unified diff
Fixed specialchars problem in the news modul (#339)