diff --git a/www/polls/get.php b/www/polls/get.php index 2afdbc27..d3bdf39e 100644 --- a/www/polls/get.php +++ b/www/polls/get.php @@ -31,7 +31,7 @@ catch(Exceptions\SeException $ex){
= $poll->Description ?>
if($poll->IsActive()){ ?> if($poll->End !== null){ ?> -This poll closes on = $poll->End->format('F j, Y g:i A') ?>.
+This poll closes on = $poll->End->format('F j, Y g:i a') ?>.
} ?> if(!$canVote){ ?>You’ve already voted in this poll.
@@ -44,9 +44,9 @@ catch(Exceptions\SeException $ex){ }else{ ?> if($poll->Start !== null && $poll->Start > new DateTime()){ ?> -This poll opens on = $poll->Start->format('F j, Y g:i A') ?>.
+This poll opens on = $poll->Start->format('F j, Y g:i a') ?>.
}else{ ?> -This poll closed on = $poll->End->format('F j, Y g:i A') ?>.
+This poll closed on = $poll->End->format('F j, Y g:i a') ?>.
} ?> } ?> diff --git a/www/polls/votes/get.php b/www/polls/votes/get.php index ddae7c30..a70b1cea 100644 --- a/www/polls/votes/get.php +++ b/www/polls/votes/get.php @@ -28,7 +28,7 @@ catch(Exceptions\SeException $ex){ if($created){ ?>Thank you for voting in the = Formatter::ToPlainText($vote->PollItem->Poll->Name) ?> poll.
}else{ ?> -Your vote in the = Formatter::ToPlainText($vote->PollItem->Poll->Name) ?> poll was submitted on = $vote->Created->format('F j, Y g:i A') ?>.
+Your vote in the = Formatter::ToPlainText($vote->PollItem->Poll->Name) ?> poll was submitted on = $vote->Created->format('F j, Y g:i a') ?>.
} ?> diff --git a/www/polls/votes/index.php b/www/polls/votes/index.php index 62d42dfa..243753b4 100644 --- a/www/polls/votes/index.php +++ b/www/polls/votes/index.php @@ -17,10 +17,10 @@ catch(Exceptions\SeException $ex){Total votes: = number_format($poll->VoteCount) ?>
if($poll->IsActive()){ ?> if($poll->End !== null){ ?> -This poll closes on = $poll->End->format('F j, Y g:i A') ?>.
+This poll closes on = $poll->End->format('F j, Y g:i a') ?>.
} ?> }elseif($poll->End !== null){ ?> -This poll closed on = $poll->End->format('F j, Y g:i A') ?>.
+This poll closed on = $poll->End->format('F j, Y g:i a') ?>.
} ?>