Gena
Posts: 591
|
| Posted: 11/09/2006, 10:40 AM |
|
CCS 3.1
I have created a standard Search form, it works good BUT it produces two extra parameters that I have never inserted even it does not exists in the form. So my URL now looks like
http://localhost/mysite/AdmSearch.php?s_StyleID=1&s_SizeID=2&x=19&y=10
x and y parameters are the ghost... I looked at php code and found it here:
if($this->PressedButton == "Button_DoSearch") {
$Redirect = "AdmSearch.php" . "?" . CCMergeQueryStrings(CCGetQueryString("Form", array("Button_DoSearch", "Button_DoSearch_x", "Button_DoSearch_y")));
if(!CCGetEvent($this->Button_DoSearch->CCSEvents, "OnClick", $this->Button_DoSearch)) {
$Redirect = "";
}
} .....
Anybody knows what is this???
_________________
Gena |