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

Commit

Permalink
*6918* Fixed reference glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Oct 7, 2011
1 parent 1add0a4 commit 8b4e354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/importexport/native/NativeImportDom.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ function handlePaperNode(&$conference, &$schedConf, &$paperNode, &$track, &$pape
$hasErrors = false;
$galleyCount = 0;
for ($index=0; $index < count($paperNode->children); $index++) {
$node =& $paperNode->children[$index];
$node = $paperNode->children[$index];

if ($node->getName() == 'htmlgalley') $isHtml = true;
elseif ($node->getName() == 'galley') $isHtml = false;
Expand Down

0 comments on commit 8b4e354

Please sign in to comment.