ソースを参照

Fixed busines parameter check again

tags/0.1.0
Robin Thoni 9年前
コミット
bcb185d1b3
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      src/Utils/LuBusiness.php

+ 1
- 1
src/Utils/LuBusiness.php ファイルの表示

@@ -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) {

読み込み中…
キャンセル
保存