summaryrefslogtreecommitdiff
path: root/includes/controller/angeltypes_controller.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/controller/angeltypes_controller.php')
-rw-r--r--includes/controller/angeltypes_controller.php21
1 files changed, 6 insertions, 15 deletions
diff --git a/includes/controller/angeltypes_controller.php b/includes/controller/angeltypes_controller.php
index 474540d6..bcd7696e 100644
--- a/includes/controller/angeltypes_controller.php
+++ b/includes/controller/angeltypes_controller.php
@@ -13,29 +13,20 @@ function angeltypes_title() {
function angeltypes_controller() {
if (! isset($_REQUEST['action']))
$_REQUEST['action'] = 'list';
+
switch ($_REQUEST['action']) {
default:
case 'list':
- list($title, $content) = angeltypes_list_controller();
- break;
+ return angeltypes_list_controller();
case 'view':
- list($title, $content) = angeltype_controller();
- break;
+ return angeltype_controller();
case 'edit':
- list($title, $content) = angeltype_edit_controller();
- break;
+ return angeltype_edit_controller();
case 'delete':
- list($title, $content) = angeltype_delete_controller();
- break;
+ return angeltype_delete_controller();
case 'about':
- list($title, $content) = angeltypes_about_controller();
- break;
+ return angeltypes_about_controller();
}
-
- return array(
- $title,
- $content
- );
}
/**