Fix small errors in bulk and mass controller

This commit is contained in:
James Cole
2018-03-04 09:12:33 +01:00
parent 8b52006959
commit 2f17521c06
3 changed files with 69 additions and 48 deletions

View File

@@ -168,7 +168,7 @@ class BulkController extends Controller
}
if ($ignoreTags === false) {
Log::debug(sprintf('Set tags to %s', $request->string('budget_id')));
$repository->updateTags($journal, explode(',', $request->string('tags')));
$repository->updateTags($journal,['tags' => explode(',', $request->string('tags'))]);
}
// update tags if not told to ignore (and is withdrawal)
}