Skip to content
This repository has been archived by the owner on Mar 28, 2021. It is now read-only.

Commit

Permalink
Release 0.2.1, Show Date in title
Browse files Browse the repository at this point in the history
  • Loading branch information
synox committed Jul 1, 2018
1 parent 9af257c commit d86adfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -5,12 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [Unreleased]

## [0.2.1] - 2018-07-01

### Breaking Changes
- added $config['locale']. See config.sample.php - you have to set it.

### Changed
- new layout & design with more whitespace and more explanations.

- Show dates in local and relative format.

## [0.2.0] - 2018-06-16

Expand Down
3 changes: 2 additions & 1 deletion src/frontend.template.php
Expand Up @@ -192,7 +192,8 @@ function niceDate($date) {
<div class="media-body">
<h6 class="list-group-item-heading"><?php echo filter_var($email->fromName, FILTER_SANITIZE_SPECIAL_CHARS) ?>
<span class="text-muted"><?php echo filter_var($email->fromAddress, FILTER_SANITIZE_SPECIAL_CHARS) ?></span>
<small class="float-right"><?php echo niceDate($email->date) ?></small>
<small class="float-right"
title="<?php echo $email->date ?>"><?php echo niceDate($email->date) ?></small>
</h6>
<p class="list-group-item-text text-truncate" style="width: 75%">
<?php echo filter_var($email->subject, FILTER_SANITIZE_SPECIAL_CHARS); ?>
Expand Down

0 comments on commit d86adfc

Please sign in to comment.