diff options
Diffstat (limited to 'www/functions/func_interface.php')
| -rwxr-xr-x | www/functions/func_interface.php | 5 |
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); } |
