Update of /cvsroot/phpwiki/phpwiki/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2500
Modified Files:
editpage.php
Log Message:
use better constant WYSIWYG_DEFAULT_PAGETYPE_HTML
Index: editpage.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/editpage.php,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -2 -b -p -d -r1.102 -r1.103
--- editpage.php 31 Oct 2005 16:47:14 -0000 1.102
+++ editpage.php 31 Oct 2005 17:09:13 -0000 1.103
@@ -436,5 +436,5 @@ class PageEditor
if (ENABLE_WYSIWYG) {
// don't store everything as html
- if (!USE_DEFAULT_PAGETYPE_HTML) {
+ if (!WYSIWYG_DEFAULT_PAGETYPE_HTML) {
$xml_output = $this->WysiwygEdit->ConvertAfter($this->_content);
$this->_content = join("", $xml_output->_content);
@@ -772,4 +772,7 @@ extends PageEditor
/**
$Log$
+ Revision 1.103 2005/10/31 17:09:13 rurban
+ use better constant WYSIWYG_DEFAULT_PAGETYPE_HTML
+
Revision 1.102 2005/10/31 16:47:14 rurban
enable wysiwyg html converters
|