If you have a pagename with a colon in it, like user:person, it will not work because Firefox will think user: is a protocol.
Will commit after 6.0 release.
Index: tiki-sefurl.php =================================================================== --- tiki-sefurl.php (revision 27579) +++ tiki-sefurl.php (working copy) @@ -87,5 +95,9 @@ } } } + // Fix links to pages like user:person because Firefox thinks user: is a protocol + if (strpos($tpl_output, '/') === false && strpos($tpl_output, ':') !== false) { + $tpl_output = "./" . $tpl_output; + } return $tpl_output; }
To help developers solve the bug, we kindly request that you demonstrate your bug on a show2.tiki.org instance. To start, simply select a version and click on "Create show2.tiki.org instance". Once the instance is ready (in a minute or two), as indicated in the status window below, you can then access that instance, login (the initial admin username/password is "admin") and configure the Tiki to demonstrate your bug. Priority will be given to bugs that have been demonstrated on show2.tiki.org.
filename | created | hits | comment | version | filetype | ||
---|---|---|---|---|---|---|---|
No attachments for this item |