Bug : customer.inc.php with http_input::request
Correct : Contact.inc.php remove direct use of $_GET
This commit is contained in:
parent
1ff9d19c1a
commit
4713644345
2 changed files with 3 additions and 3 deletions
|
|
@ -73,8 +73,8 @@ if ($low_action == "list")
|
|||
<form method="get" action="<?php echo $href;?>">
|
||||
<?php
|
||||
echo dossier::hidden();
|
||||
$a = (isset($_GET['query'])) ? $_GET['query'] : "";
|
||||
echo _("Cherche ").HtmlInput::filter_table_form("contact_tb", '0,1,2,3,4,5,6', 1,"query",$a);
|
||||
$a = $http->get("query","string","");
|
||||
echo _("Cherche ").HtmlInput::filter_table_form("contact_tb", '0,1,2,3,4,5,6', 1,"query",$a);
|
||||
|
||||
$sel_card = new ISelect('cat');
|
||||
$sel_card->value = $cn->make_array('select fd_id, fd_label from fiche_def ' .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue