Skip to content
Snippets Groups Projects
Commit dc2255a0 authored by Jürgen Haas's avatar Jürgen Haas
Browse files

Merge branch '3270318-action-ecaviewsquery-add' into 1.0.x

parents 1b28b24b 4d441107
No related branches found
No related tags found
No related merge requests found
......@@ -200,7 +200,8 @@ abstract class ModellerBpmnBase extends ModellerBase {
if ($element = $this->xpath->query("//*[@id='{$this->getId()}']")->item(0)) {
$element->setAttribute('isExecutable', 'true');
}
return $this->save($this->doc->saveXML());
$this->save($this->doc->saveXML());
return $this;
}
/**
......@@ -211,7 +212,8 @@ abstract class ModellerBpmnBase extends ModellerBase {
if ($element = $this->xpath->query("//*[@id='{$this->getId()}']")->item(0)) {
$element->setAttribute('isExecutable', 'false');
}
return $this->save($this->doc->saveXML());
$this->save($this->doc->saveXML());
return $this;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment