Skip to content

Commit 69f7ab5

Browse files
authored
Fix Language string
1 parent a851fa4 commit 69f7ab5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ssl/module.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public function onPOST($data = []) : void {
335335
$to = new \DateTime(date_create_from_format('ymdHise', $cert_details['validFrom'])->format('c'));
336336

337337
if($cert_details == false) {
338-
$this->assign('errors', I18N::get('The specified certificate is not valid:<br/>' . openssl_error_string()));
338+
$this->assign('errors', I18N::get('The specified certificate is not valid:') . '<br/>' . openssl_error_string());
339339
} else {
340340
Session::set('import', [
341341
'key' => $key,
@@ -401,4 +401,4 @@ public function content($submodule = null) : void {
401401
}
402402
}
403403
}
404-
?>
404+
?>

0 commit comments

Comments
 (0)