fix taskwarrior bug

This commit is contained in:
DavidBadura 2015-04-23 19:47:03 +00:00
parent 2347864f54
commit bcbb955e28
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ class Config implements \IteratorAggregate, \Countable
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;
}