Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cconard96 committed Jan 14, 2025
1 parent f8a828b commit e2ea753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CommonITILObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -7738,7 +7738,7 @@ class_exists($validation_class) && $params['with_validations']
$canedit = $validation_obj->can($validations_id, UPDATE);
$cananswer = $validation_obj->canValidate($this->getID())
&& $validation_row['status'] == CommonITILValidation::WAITING
&& !in_array($this->fields['status'], static::getSolvedStatusArray() + static::getClosedStatusArray());
&& !$this->isSolved(true);
$user = new User();
$user->getFromDB($validation_row['users_id_validate']);

Expand Down

0 comments on commit e2ea753

Please sign in to comment.