Skip to content

Commit

Permalink
fix missing $i++
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-24 authored May 1, 2017
1 parent 9883fad commit f9dd52a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/mod_stats/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
/**
* Helper for mod_stats
*
* @package Joomla.Site
* @subpackage mod_stats
* @since 1.5
* @since 1.5
*/
class ModStatsHelper
{
Expand Down Expand Up @@ -140,6 +138,7 @@ public static function &getList(&$params)
$rows[$i] = new stdClass;
$rows[$i]->title = JText::_('MOD_STATS_ARTICLES_VIEW_HITS');
$rows[$i]->data = $hits + $increase;
$i++;
}
}

Expand Down

0 comments on commit f9dd52a

Please sign in to comment.