Skip to content

Commit

Permalink
(GETPOST("button_removefilter_x") || GETPOST("button_removefilter"))
Browse files Browse the repository at this point in the history
if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter")) // Both test are required to be compatible with all browsers
  • Loading branch information
frederic34 committed Nov 23, 2014
1 parent 2a56a19 commit d9fdf82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/commande/list.php
Expand Up @@ -70,7 +70,7 @@
$viewstatut=GETPOST('viewstatut');

// Purge search criteria
if (GETPOST("button_removefilter"))
if (GETPOST("button_removefilter_x") || GETPOST("button_removefilter")) // Both test are required to be compatible with all browsers
{
$search_categ='';
$search_user='';
Expand Down

0 comments on commit d9fdf82

Please sign in to comment.