2
0
forked from Wavyzz/dolibarr

Fix: wrong POST GET name

This commit is contained in:
Regis Houssin
2017-10-09 11:03:16 +02:00
parent 14b667c9f1
commit 64d9b625ff

View File

@@ -248,7 +248,7 @@ function dol_shutdown()
*/ */
function GETPOSTISSET($paramname) function GETPOSTISSET($paramname)
{ {
return (isset($_POST['name']) || isset($_GET['name'])); return (isset($_POST[$paramname]) || isset($_GET[$paramname]));
} }
/** /**