Skip to content

Commit

Permalink
Change variable name in converter.php
Browse files Browse the repository at this point in the history
  • Loading branch information
daris committed Jan 30, 2012
1 parent 8a111bd commit 6e0b73f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@
$converter = new Converter($fluxbb, $forum);

// Start the converter
$redirect = array(null);
while ($redirect !== false)
$next_step = array(null);
while ($next_step !== false)
{
conv_message();
conv_log('-----------------'."\n");
$redirect = $converter->convert($redirect[0], isset($redirect[1]) ? $redirect[1] : 0);
$next_step = $converter->convert($next_step[0], isset($next_step[1]) ? $next_step[1] : 0);
}

// We're done
Expand Down

0 comments on commit 6e0b73f

Please sign in to comment.