From: Geoffrey T. D. <da...@us...> - 2001-08-18 05:09:12
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv19382 Modified Files: Tag: release-1_2-branch UPGRADING.readme Log Message: Fix SF bug #227748. When using the flat-file back end, page names with slashes in them didn't work. We fix this by urlencoding '%' '/' '\\' and ':' when they occur in page names. WARNING: If any pages currently in your flat-file database contain any of those characters in their titles, this change will make them invisible to PhpWiki. You should back them up before upgrading, and restore them after upgrading. Index: UPGRADING.readme =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/Attic/UPGRADING.readme,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** UPGRADING.readme 2001/08/18 03:57:27 1.1.2.1 --- UPGRADING.readme 2001/08/18 05:09:09 1.1.2.2 *************** *** 13,16 **** schemas/update.mysql.1.2.0-1.2.1 and use it as a guide. - --- 13,27 ---- schemas/update.mysql.1.2.0-1.2.1 and use it as a guide. + Flat File + + We are now (since 1.2.0) urlencoding the characters '%', '/', '\\', + and ':' when forming filenames from page names. (This is to fix a bug + having to do with page names containing slashes.) If you currently have + any page names with any of those special characters, they will not be + visible to PhpWiki after you upgrade. (Any pages without those funny + characters in their names will be unaffected.) + + If you do have pages with slashes, colons or percent signs in their names, + you should probably make a backup dump of your database before upgrading + and re-load the database after upgrading. |