Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Wrong alphabet for paperid.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmccurley committed Oct 12, 2023
1 parent 7049c4d commit 3f65a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iacr/api/util.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

function iacr_paperid($paperId) {
global $Opt;
$suffix = strval($Opt['volume']) . '_' . strval($Opt['issue']) . '_' . strval($paperId);
$suffix = strval($Opt['volume']) . '-' . strval($Opt['issue']) . '-' . strval($paperId);
switch ($Opt['iacrType']) {
case 'cic':
return 'cc' . $suffix;
Expand Down

0 comments on commit 3f65a26

Please sign in to comment.