Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
*5570* Fixed call-time pass-by-reference
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Jul 13, 2010
1 parent 74cc099 commit 80168a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/importexport/native/NativeImportDom.inc.php
Expand Up @@ -39,7 +39,7 @@ function importPapers(&$conference, &$schedConf, &$nodes, &$track, &$papers, &$e

function importPaper(&$conference, &$schedConf, &$node, &$track, &$paper, &$errors, &$user, $isCommandLine) {
$dependentItems = array();
$result = NativeImportDom::handlePaperNode(&$conference, $schedConf, $node, $track, $paper, $publishedPaper, $errors, $user, $isCommandLine, $dependentItems);
$result = NativeImportDom::handlePaperNode($conference, $schedConf, $node, $track, $paper, $publishedPaper, $errors, $user, $isCommandLine, $dependentItems);
if (!$result) {
NativeImportDom::cleanupFailure ($dependentItems);
}
Expand Down

0 comments on commit 80168a0

Please sign in to comment.