1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 14:00:56 +01:00

Merge pull request #132 from floatingLomas/1365-tasks-with-ts

Strip non-integers out of task id entries
This commit is contained in:
Evan Priestley 2012-06-15 18:00:31 -07:00
commit 5d9896e7c5

View file

@ -661,6 +661,24 @@ final class ManiphestTaskListController extends ManiphestController {
$exclude_project_phids = $request->getStrList('xprojects');
$task_ids = $request->getStrList('tasks');
// We only need the integer portion of each task ID, so get rid of any non-
// numeric elements
$numeric_task_ids = array();
foreach ($task_ids as $task_id) {
$task_id = preg_replace('/[a-zA-Z]+/', '', $task_id);
if (!empty($task_id)) {
$numeric_task_ids[] = $task_id;
}
}
if (empty($numeric_task_ids)) {
$numeric_task_ids = array(null);
}
$task_ids = $numeric_task_ids;
$owner_phids = $request->getStrList('owners');
$author_phids = $request->getStrList('authors');