summaryrefslogtreecommitdiff
path: root/www/functions/func_interface.php
diff options
context:
space:
mode:
authorHorus32014-03-16 22:42:35 +0100
committerHorus32014-03-16 22:42:35 +0100
commit7a3dc37a2316e920299f2d56a04da619e8c6433a (patch)
tree3a6ac8457efb26017362f4d7a433ef5fdbd42eaa /www/functions/func_interface.php
parent1e526e476e75c936b4229914d63b7ef91aa4a790 (diff)
downloadfiles.iamfabulous.de-7a3dc37a2316e920299f2d56a04da619e8c6433a.tar.gz
Redesigned the way of showing content.
Diffstat (limited to 'www/functions/func_interface.php')
-rwxr-xr-xwww/functions/func_interface.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/www/functions/func_interface.php b/www/functions/func_interface.php
index 266a24f..0964470 100755
--- a/www/functions/func_interface.php
+++ b/www/functions/func_interface.php
@@ -1,6 +1,6 @@
<?php
-function show($db){
+function collect_content($db){
$owner = user($db, $_GET["name"]);
if(!$owner){
@@ -15,5 +15,6 @@ function show($db){
failure("This folder is empty.");
}
- var_dump($content);
+ return $content;
+ //var_dump($content);
}