Changeset 1111 for trunk/www/index.php
- Timestamp:
- 03/19/10 18:29:25 (2 years ago)
- File:
-
- 1 edited
-
trunk/www/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/index.php
r1109 r1111 89 89 } 90 90 91 // Task detail editor 92 else if ($urlstart == 'admin' && getattr($pagepath, 1) == 'problema') { 93 require_once(IA_ROOT_DIR.'www/controllers/task.php'); 94 $obj_id = implode("/", array_slice($pagepath, 2)); 95 $action = request('action'); 96 if ($action == 'tag-edit') { 97 controller_task_tag($obj_id); 98 } else { 99 controller_task_details($obj_id); 100 } 91 // Task edit parameters 92 else if ($urlstart == 'problema' && $action == 'task-edit-params') { 93 require_once(IA_ROOT_DIR.'www/controllers/task.php'); 94 $task_id = implode("/", array_slice($pagepath, 1)); 95 controller_task_details($task_id); 96 } 97 98 // Task edit tags 99 else if ($urlstart == 'problema' && $action == 'task-edit-tags') { 100 require_once(IA_ROOT_DIR.'www/controllers/task.php'); 101 $task_id = implode("/", array_slice($pagepath, 1)); 102 controller_task_tag($task_id); 103 } 104 105 // Task edit ratings 106 else if ($urlstart == 'problema' && $action == 'task-edit-ratings') { 107 require_once(IA_ROOT_DIR.'www/controllers/task.php'); 108 $task_id = implode("/", array_slice($pagepath, 1)); 109 controller_task_ratings($task_id); 101 110 } 102 111
Note: See TracChangeset
for help on using the changeset viewer.
![[infoarena] development](/chrome/site/logo.png)