Skip to content

Commit

Permalink
Fixed issue #16692: Clear process after test script is failing
Browse files Browse the repository at this point in the history
Code fix
  • Loading branch information
gabrieljenik committed Oct 2, 2020
1 parent 682bc34 commit 358bf08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/Survey.php
Expand Up @@ -300,7 +300,7 @@ public function delete($recursive=true)

// Remove from cache
if (array_key_exists($this->sid, $this->findByPkCache)) {
unset $this->findByPkCache[$this->sid];
unset ($this->findByPkCache[$this->sid]);
}

return true;
Expand Down

0 comments on commit 358bf08

Please sign in to comment.