Browse Source

Way to return images from fileuploads with mimetype

tags/rls1
kenn408k 6 years ago
parent
commit
8749afdb1b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      content/filegallery.php

+ 1
- 1
content/filegallery.php View File

15
     
15
     
16
     <?php
16
     <?php
17
     foreach (Get::getImages(0) as $row) {
17
     foreach (Get::getImages(0) as $row) {
18
-        echo $row['filename'];
18
+        echo Config::$sys_url . Config::$file_path . $row['filename'];
19
         
19
         
20
     }
20
     }
21
     
21
     

Loading…
Cancel
Save