Question
I've installed a complete new TWiki (latest Beta) using the great Koala skin. But now I have a problem: after editing a page and pressing SAVE the web name somehow gets lost in the URL and I end up on a different page
Example: ../bin/view/Know/WebHome ->edit-save -> ../bin/view//WebHome
The Web somehow gets lost. If I deactivete the skin it works fine.
Did I miss a patch?
Environment
--
StephanPulver - 11 Apr 2004
Answer
See
SavemultiCgiScript
--
MartinCleaver - 13 Apr 2004
...because this does not solve my problem I went on a long journey - and this is what I've found:
in bin/savemulti you need to change the following line:
old:
line no 170
} else {
TWiki::redirect( $query, &TWiki::getViewUrl( "", $topic ) );
}
new:
} else {
TWiki::redirect( $query, &TWiki::getViewUrl( $webName, $topic ) );
}
at least it solves my problem.
--
StephanPulver - 26 Apr 2004