Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv2699
Modified Files:
index.php
Log Message:
Cleaned up binary pagedump hack a bit (importing binary pagedumps created by this hack actually works now). Added new global $pagedump_format to index.php for specifying "quoted-printable" or "binary" pagedumps.
Index: index.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -r1.54 -r1.55
*** index.php 2002/01/05 18:33:52 1.54
--- index.php 2002/01/09 04:01:08 1.55
***************
*** 92,95 ****
--- 92,99 ----
define('ZIPDUMP_AUTH', false);
+ // This setting determines the type of page dumps. Must be one of
+ // "quoted-printable" or "binary".
+ $pagedump_format = "quoted-printable";
+
// The maximum file upload size.
define('MAX_UPLOAD_SIZE', 16 * 1024 * 1024);
|