mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Merge pull request #7596 from hregis/develop_bug2
Fix: wrong POST GET name
This commit is contained in:
commit
eb75c2f98e
|
|
@ -248,7 +248,7 @@ function dol_shutdown()
|
|||
*/
|
||||
function GETPOSTISSET($paramname)
|
||||
{
|
||||
return (isset($_POST['name']) || isset($_GET['name']));
|
||||
return (isset($_POST[$paramname]) || isset($_GET[$paramname]));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user