From c328bdc265149547605970b46de906cbac0fc5b5 Mon Sep 17 00:00:00 2001 From: Aaron Schmitz Date: Sun, 25 Mar 2012 01:00:28 -0500 Subject: [PATCH] Fix whitespace in integer.php. --- libraries/joomla/form/fields/integer.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libraries/joomla/form/fields/integer.php b/libraries/joomla/form/fields/integer.php index 9752a9f3d4..eb16fe2ccb 100644 --- a/libraries/joomla/form/fields/integer.php +++ b/libraries/joomla/form/fields/integer.php @@ -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.