aboutsummaryrefslogtreecommitdiffstats
path: root/php
diff options
context:
space:
mode:
authoradam <adam@>2021-02-12 19:31:27 +0200
committeradam <adam@>2021-02-12 19:31:27 +0200
commit661172e6ce30235851fdee0736df0e532e997bd4 (patch)
tree99d727de1e54bad695a6616d95ed08e64798b640 /php
parentb1689d03b0ac8a601f3ff4a225729d1e15b317ba (diff)
downloadfileup-661172e6ce30235851fdee0736df0e532e997bd4.tar.gz
the files show but there are still things to fix
Diffstat (limited to 'php')
-rw-r--r--php/database.php3
-rw-r--r--php/readdir.php5
2 files changed, 5 insertions, 3 deletions
diff --git a/php/database.php b/php/database.php
index 98946ce..fb3d35d 100644
--- a/php/database.php
+++ b/php/database.php
@@ -118,7 +118,8 @@ require_once "node.php";
node_links.name as name,
node_links.note as note,
nodes.is_directory as is_directory,
- nodes.code as code
+ nodes.code as code,
+ nodes.type as mimetype
from node_links
inner join nodes on
nodes.node_id=node_links.node_id
diff --git a/php/readdir.php b/php/readdir.php
index b913cb1..e46d4ad 100644
--- a/php/readdir.php
+++ b/php/readdir.php
@@ -4,6 +4,7 @@
$user=$_SESSION["user_object"];
//echo '[ { "name": "file1.txt", "mimetype": "text/plain", "is_directory": false }, { "name": "file2.pdf", "mimetype": "application/pdf", "is_directory": false }, { "name": "dir", "mimetype": "", "is_directory": true } ] ';
- echo get_directory("/",$user);
- error_log(print_r(get_directory("/",$user)).gettype(get_directory("/",$user)));
+ $ret=get_directory("/",$user);
+ $json=json_encode($ret);
+ echo $json;
?>