We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a90b3c commit 41bba0dCopy full SHA for 41bba0d
lib/Controller/AjaxController.php
@@ -324,6 +324,11 @@ public function updateWorkInterval($id) {
324
if (empty($tag))
325
continue;
326
if(!is_numeric($tag)){
327
+ if ($wi->projectId != null){
328
+ $project = $this->projectMapper->find($wi->projectId);
329
+ if($project && $project->locked)
330
+ continue; // don't add new tags to locked projects
331
+ }
332
$c = new Tag();
333
$c->setName($tag);
334
$c->setUserUid($this->userId);
0 commit comments