Skip to content

Commit

Permalink
Fix whitespace in integer.php.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronschmitz committed Mar 25, 2012
1 parent 7d943ef commit c328bdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libraries/joomla/form/fields/integer.php
Expand Up @@ -65,19 +65,19 @@ protected function getOptions()
}
elseif ($step < 0)
{
// Build the options array backwards.
for ($i = $first; $i >= $last; $i += $step)
// Build the options array backwards.
for ($i = $first; $i >= $last; $i += $step)
{
$options[] = JHtml::_('select.option', $i);
}
}
}
else
{
// Build the options array.
for ($i = $first; $i <= $last; $i += $step)
for ($i = $first; $i <= $last; $i += $step)
{
$options[] = JHtml::_('select.option', $i);
}
}
}

// Merge any additional options in the XML definition.
Expand Down

0 comments on commit c328bdc

Please sign in to comment.