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

Commit

Permalink
Fix callback for upload of final paper to www.iacr.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmccurley committed Sep 2, 2021
1 parent 18aa274 commit 824cf76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iacr/api/updatePaper.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
try {
// Note that the ID number is the predefined option value defined in create_conf.py.
// This used to be hard-coded.
$optionId = function getFinalPaperOptionId();
$optionId = getFinalPaperOptionId();
if (!$optionId) {
showError('Unable to update hotcrp: missing option');
} else {
Expand Down
4 changes: 2 additions & 2 deletions iacr/finalLib.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
require_once "../conf/options.php";
require_once "../src/initweb.php";
require_once(dirname(__DIR__)."/conf/options.php");
require_once(dirname(__DIR__)."/src/initweb.php");
require_once "/var/www/util/hotcrp/hmac.php";

function getFinalPaperOptionId() {
Expand Down

0 comments on commit 824cf76

Please sign in to comment.