浏览代码

Update to uploadclass

tags/rls1
kenn408k 6 年前
父节点
当前提交
5af0005d37
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2
    3
      classes/upload.class.php

+ 2
- 3
classes/upload.class.php 查看文件

25
             // Error! This file does not have an acceptable filetype
25
             // Error! This file does not have an acceptable filetype
26
             $errors[] = "Filtype ikke accepteret.";
26
             $errors[] = "Filtype ikke accepteret.";
27
         }
27
         }
28
-        
28
+
29
         if ($size > 5000000) {
29
         if ($size > 5000000) {
30
             $errors[] = "Fil for stor.";
30
             $errors[] = "Fil for stor.";
31
         }
31
         }
32
-        
32
+
33
         if (empty($errors)) {
33
         if (empty($errors)) {
34
             // Do fileupload
34
             // Do fileupload
35
         }
35
         }
36
-        
37
     }
36
     }
38
 
37
 
39
 }
38
 }

正在加载...
取消
保存