master
click here to add a description
click here to add a homepage
When I click on "Show only my tasks" or this: {{tasks>namespace:?my&noform}} (or {{tasks>namespace:?my}}) I obtain all tasks not only my tasks.
I have ldap authentication.
Hi. I'm using ldap too and having the same problem. But I dont think this is an ldap issue. I fixed this by changing the following lines:
task/syntax/tasks.php line 209, add my the array of available filters. else $filters = array('all', 'open', 'new', 'done', 'my');
then line 125 in task/helper.php // skip other's tasks if filter is 'my'
if (($filter == 'my') && ($responsible == false)) continue;
This works for me. Thanks for the great plugin.
posted a patch here, expires in a month. http://pastebin.com/m4d2c5ab4
when I open a new task, I get the standard dokuwiki editor when I edit an existing task, I get the fckw editor
Is there a way to enable fckw for new task? Or (if that is not possible) can I disable fckw for existing tasks?
And out of curiosity: I saw the question about additional task attributes on the discussion page. Did anything come out of if?
Thanks!
Hans
I personally don't use fckw, and I'm reluctant to test it because none of the implementations to date is what I consider production stable or usable.
As for the additional tasks attributes. Nope, there hasn't been any development.
When task lists become longer and are paginated, the page links have a blank value for "filter" so they just take you back to the first page of the "open" task list.
Tracked down the problem - line 233 in syntax/tasks.php : $opt['filter'] = $filer;
misspelled variable, should be "$filter"
Hi. I'm using ldap too and having the same problem. But I dont think this is an ldap issue.
I fixed this by changing the following lines:
task/syntax/tasks.php line 209, add my the array of available filters.
else $filters = array('all', 'open', 'new', 'done', 'my');
then line 125 in task/helper.php
// skip other's tasks if filter is 'my'
if (($filter == 'my') && ($responsible == false)) continue;
This works for me. Thanks for the great plugin.
posted a patch here, expires in a month.
http://pastebin.com/m4d2c5ab4