Sfoglia il codice sorgente

Fixed busines parameter check again

tags/0.1.0
Robin Thoni 9 anni fa
parent
commit
bcb185d1b3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      src/Utils/LuBusiness.php

+ 1
- 1
src/Utils/LuBusiness.php Vedi File

@@ -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…
Annulla
Salva