Explorar el Código

Fixed busines parameter check again

tags/0.1.0
Robin Thoni hace 9 años
padre
commit
bcb185d1b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/Utils/LuBusiness.php

+ 1
- 1
src/Utils/LuBusiness.php Ver fichero

@@ -35,7 +35,7 @@ abstract class LuBusiness {
35 35
      */
36 36
     public static function checkParam($param, $validate = null)
37 37
     {
38
-        if (!self::hasParam($param))
38
+        if (!self::hasParam(array($param)))
39 39
             abort(400, 'Missing parameter: ' . $param);
40 40
         $value = self::getParam($param);
41 41
         if ($validate != null) {

Loading…
Cancelar
Guardar