From 7320bdbde8c752bdd0ccfd2ddc1747667bab7cc7 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 23 Oct 2007 21:24:01 +0000 Subject: [PATCH] Use FCKEditor for pagetexts if its available --- config/pagetexts.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 "
";