Skip to content

Commit

Permalink
Fix Division By Zero error on RC4
Browse files Browse the repository at this point in the history
  • Loading branch information
3Di committed Sep 29, 2017
1 parent 877c334 commit 8107000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion language/en/common.php
Expand Up @@ -37,7 +37,7 @@
'TPOTM_CAT' => 'Top Poster of the Month',
'TPOTM_EVER_CAT' => 'Top Posters ever',
'TPOTM_NOW' => 'At the present time is ',
'TPOTM_NOBODY' => 'not yet available,',
'TPOTM_NOBODY' => 'not yet available ',
'TPOTM_BADGE' => 'TPOTM badge',
'TPOTM_BADGE_MINIPROFILE' => 'Top poster of the Month',
'TPOTM_BADGE_ERROR' => '<em><strong>image?</strong></em>',
Expand Down
2 changes: 1 addition & 1 deletion migrations/m3_install_configs.php
Expand Up @@ -39,7 +39,7 @@ public function update_data()
array('config.add', array('threedi_tpotm_ttl', 30)),
array('config.add', array('threedi_tpotm_badge_exists', 1)),
array('config.add', array('threedi_tpotm_users_page', 4)),
array('config.add', array('threedi_tpotm_month_total_posts', 0)),
array('config.add', array('threedi_tpotm_month_total_posts', 1)),

);
}
Expand Down

0 comments on commit 8107000

Please sign in to comment.