Skip to content

Commit

Permalink
Fix new phpstan error
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Sep 29, 2024
1 parent 6a7e96c commit fc9b253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/enigma/lib/enigma_ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ public function status_message($p)
$this->enigma->gettext('signokey')));
}
}
} elseif ($sig && $sig->getCode() == enigma_error::KEYNOTFOUND) {
} elseif ($sig->getCode() == enigma_error::KEYNOTFOUND) {
$attrib['class'] = 'boxwarning enigmawarning signed';
$msg = rcube::Q(str_replace('$keyid', enigma_key::format_id($sig->getData('id')),
$this->enigma->gettext('signokey')));
Expand Down

0 comments on commit fc9b253

Please sign in to comment.