When the stealth mode is off and a form is sent with
method="get" it doesn't work correctly.
The parser replaces
<form action="mypage.htm" method="get">
correctly with
<form action="parser/parser.php?file=mypage.htm"
method="get">
but any parameters, which are added with "?" to the
URL in an action-Paramter will be ignored when method
is "get" (I'm not sure if this behavour depends on the
browser/webserver.. at least wit Internet Explorer and
Apache I discovered this behaviour).
As a result the browser doesn't load the page
mypage.htm as expected, instead it loads the phpCMS
parser (and displays the GUI login screen).
the correct way to convert these form tags whith
method="get" and stealth mode = off would be:
<form action="parser/parser.php" method="get">
<input type="hidden" name="file" value="mypage.htm">
..
..
The parser should recognize automaticaly when method
is set to get and stealth-mode is switched off and
convert the form-tag correctly (and add the hidden input
field).