Skip to content

Commit

Permalink
Merge pull request #46 from gturri/master
Browse files Browse the repository at this point in the history
Fix display in popularity plugin
  • Loading branch information
selfthinker committed Jun 4, 2011
2 parents 0f80b0b + a375d5e commit 299d873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/plugins/popularity/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function html() {
//Print the last time the data was sent
$lastSent = $this->helper->lastSentTime();
if ( $lastSent !== 0 ){
echo $this->getLang('lastSent') . datetime_h($lastSent);
echo $this->getLang('lastSent') . ' ' . datetime_h($lastSent);
}
} else {
//If we just submitted the form
Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/popularity/lang/en/lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
$lang['submissionFailed'] = 'The data couldn\'t be sent due to the following error:';
$lang['submitDirectly'] = 'You can send the data manually by submitting the following form.';
$lang['autosubmitError'] = 'The last autosubmit failed, because of the following error: ';
$lang['lastSent'] = 'The data has been sent ';
$lang['lastSent'] = 'The data has been sent';

0 comments on commit 299d873

Please sign in to comment.