Skip to content

Commit

Permalink
More FCKeditor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 9, 2005
1 parent 1719f48 commit 566d236
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion php_interface/queue.php
Expand Up @@ -747,6 +747,7 @@ function output_news_edit_widgets($item, $queues, $chosen_queue, $allow_submit)
$t = str_replace("&lt;", '<', $t);
$t = str_replace("&gt;", '>', $t);
$t = str_replace("&amp;", '&', $t);
$t = str_replace("&quot;", '\"', $t);
$editor = "<script type='text/javascript'>\n" .
"<!--\n" .
"var oFCKeditor = new FCKeditor('form_text');\n" .
Expand All @@ -755,7 +756,7 @@ function output_news_edit_widgets($item, $queues, $chosen_queue, $allow_submit)
"oFCKeditor.Create();\n" .
"//-->\n" .
"</script>\n" .
"<input type='hidden' name='fckeditor' value='1'>\n";
"<input type='hidden' name='useeditor' value='1'>\n";
}
else
{
Expand Down

0 comments on commit 566d236

Please sign in to comment.