File tree 1 file changed +4
-1
lines changed
core/server/OpenXPKI/Client/UI
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -385,9 +385,11 @@ sub init_export {
385
385
push @line , i18nGettext(' I18N_OPENXPKI_UI_CERT_STATUS_' .$item -> {status });
386
386
387
387
} elsif ($field =~ / (notafter|notbefore)/ ) {
388
-
389
388
push @line , DateTime-> from_epoch( epoch => $item -> { $field } )-> iso8601();
390
389
390
+ } elsif ($field eq ' cert_key_hex' ) {
391
+ push @line , Math::BigInt-> new( $item -> {cert_key } )-> as_hex;
392
+
391
393
} else {
392
394
push @line , $item -> { $field };
393
395
}
@@ -1401,6 +1403,7 @@ sub __render_result_list {
1401
1403
1402
1404
$item -> {status } = ' EXPIRED' if ($item -> {status } eq ' ISSUED' && $item -> {notafter } < time ());
1403
1405
1406
+ # if you add patterns you also need to add those in init_export!
1404
1407
my @line ;
1405
1408
foreach my $col (@{$colums }) {
1406
1409
if ($col -> {field } eq ' status' ) {
You can’t perform that action at this time.
0 commit comments