summaryrefslogtreecommitdiff
path: root/www/index.php
diff options
context:
space:
mode:
authorHorus32014-03-12 22:11:50 +0100
committerHorus32014-03-12 22:11:50 +0100
commit2f0f4ca056f92ffd2bbf80e7b7c49b489d6e7ed4 (patch)
treeb14d63c782c3088d904858140d947492d946e29f /www/index.php
parent478a6dbc03c1ed65f5a187a6752bc130d3b82ac3 (diff)
downloadfiles.iamfabulous.de-2f0f4ca056f92ffd2bbf80e7b7c49b489d6e7ed4.tar.gz
more modular for greater flexibility
Diffstat (limited to 'www/index.php')
-rw-r--r--www/index.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/www/index.php b/www/index.php
index 2e28073..46747dd 100644
--- a/www/index.php
+++ b/www/index.php
@@ -40,7 +40,7 @@ if(empty($_GET)){
break;
*/
case("user"):
- user($db);
+ account($db);
break;
default:
get_404($_GET["task"], $_GET["task"]);
@@ -51,8 +51,7 @@ if(empty($_GET)){
/* shows the user content, main function */
if(rewrite($db)){
- $content = select($db);
- show($content);
+ show($db);
}
}
}