diff options
Diffstat (limited to 'mod/tasks.php')
-rw-r--r-- | mod/tasks.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/mod/tasks.php b/mod/tasks.php index 8220b9962..869d9b3cd 100644 --- a/mod/tasks.php +++ b/mod/tasks.php @@ -75,18 +75,22 @@ function tasks_content(&$a) { $sql_extra = " and event_status != 'COMPLETED' "; if(argc() > 1 && argv(1) === 'all') $sql_extra = ''; - - +dbg(1); $r = q("select * from event where type = 'task' and uid = %d $sql_extra ", intval(local_channel()) ); +dbg(0); $ret['success'] = (($r) ? true : false); if($r) { $ret['tasks'] = $r; } - - json_return_and_die($r); + +// return $ret; + + return json_encode($ret); + +// json_return_and_die($ret); |