admin 7 年 前
コミット
ce32012727
1 ファイル変更3 行追加3 行削除
  1. 3 3
      app/Http/Controllers/ShopController.php

+ 3 - 3
app/Http/Controllers/ShopController.php

@@ -67,9 +67,9 @@ class ShopController extends Controller
                 return Redirect::back()->withInput();
                 return Redirect::back()->withInput();
             }
             }
 
 
-            // 流量不能超过1PB
-            if ($traffic > 1073741824) {
-                Session::flash('errorMsg', '内含流量不能超过1PB');
+            // 流量不能超过10TB
+            if ($traffic > 10240000) {
+                Session::flash('errorMsg', '内含流量不能超过10TB');
 
 
                 return Redirect::back()->withInput();
                 return Redirect::back()->withInput();
             }
             }