Kaynağa Gözat

Fixed busines parameter check again

tags/0.1.0
Robin Thoni 9 yıl önce
ebeveyn
işleme
bcb185d1b3
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1
    1
      src/Utils/LuBusiness.php

+ 1
- 1
src/Utils/LuBusiness.php Dosyayı Görüntüle

@@ -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…
İptal
Kaydet