diff --git a/config/pagetexts.php b/config/pagetexts.php index 8656e8cb..91c234fc 100644 --- a/config/pagetexts.php +++ b/config/pagetexts.php @@ -56,8 +56,23 @@ echo "
"; echo "\n"; echo "textname\">\n"; + + if(is_dir("../fckeditor") && file_exists("../fckeditor/fckeditor.php")) + { + require_once("../fckeditor/fckeditor.php"); + + $oFCKeditor = new FCKeditor('text') ; + $oFCKeditor->BasePath = "../fckeditor/"; + $oFCKeditor->Value = $r->text; + $oFCKeditor->Width="100%"; + $oFCKeditor->Height=500; + $oFCKeditor->Create() ; + } + else + { echo ""; echo "
"; + } echo "\n"; echo "
"; echo "
";