fix taskwarrior bug
This commit is contained in:
parent
2347864f54
commit
bcbb955e28
|
@ -288,7 +288,7 @@ class Config implements \IteratorAggregate, \Countable
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
str_replace('/', '', $part); // fix "report.minimal.sort=project+/,description+"
|
$part = str_replace('/', '', $part); // fix "report.minimal.sort=project+/,description+"
|
||||||
|
|
||||||
$order[substr($part, 0, -1)] = substr($part, -1) == '+' ? Criteria::ASC : Criteria::DESC;
|
$order[substr($part, 0, -1)] = substr($part, -1) == '+' ? Criteria::ASC : Criteria::DESC;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue