Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
[Fixed] Fixed an issue that caused redirects created via the + from…
Browse files Browse the repository at this point in the history
… Statistics page to not save
  • Loading branch information
khalwat committed Jul 10, 2016
1 parent 75816c8 commit 9544b3e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,10 @@ Some things to do, and ideas for potential features:

## Retour Changelog

### 1.0.14 -- 2016.07.09
### 1.0.14 -- 2016.07.10

* [Added] The Statistics and Redirects tables are now dynamically searchable and sortable
* [Fixed] Fixed an issue that caused redirects created via the `+` from Statistics page to not save
* [Improved] Updated the README.md

### 1.0.13 -- 2016.07.06
Expand Down
3 changes: 2 additions & 1 deletion releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
{
"version": "1.0.14",
"downloadUrl": "https://github.com/nystudio107/retour/archive/master.zip",
"date": "2016-07-09T12:00:00-05:00",
"date": "2016-07-10T12:00:00-05:00",
"notes": [
"[Added] The Statistics and Redirects tables are now dynamically searchable and sortable",
"[Fixed] Fixed an issue that caused redirects created via the `+` from Statistics page to not save",
"[Improved] Updated the README.md"
]
},
Expand Down
Binary file modified resources/screenshots/retour01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions templates/statistics.twig
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<th style="width: 5%" data-sort="int" scope="col"><span class="sort-label">{{ "Hits"|t }}</span></th>
<th style="width: 20%" data-sort="date" scope="col"><span class="sort-label">{{ "Last Hit"|t }}</span></th>
<th style="width: 5%" data-sort="string-ins" scope="col"><span class="sort-label">{{ "Handled"|t }}</span></th>
<th class="thin right" style="width: 5%"></th>
<th class="thin right" style="width: 5%">&nbsp;</th>
</thead>
<tbody>

Expand All @@ -60,7 +60,7 @@
<td style="width: 5%">{{ stat.hitCount }}</td>
<td style="width: 20%">{{ stat.hitLastTime |datetime }}</td>
<td style="width: 6%">{% if stat.handledByRetour %}<span style="color: green;">&#x2714;</span>{% else %}<span style="color: red;">&#x2716;</span>{% endif %}</td>
<td style="width: 5%">{% if not stat.handledByRetour %}<a href="{{ actionUrl('retour/editRedirect', { defaultRedirectSrcUrl: stat.redirectSrcUrl }) }}" class="add icon" title="{{ 'Add'|t }}"></a>{% endif %}</td>
<td style="width: 5%">{% if not stat.handledByRetour %}<a href="{{ url('retour/new?defaultRedirectSrcUrl=' ~ stat.redirectSrcUrl) }}" class="add icon" title="{{ 'Add'|t }}"></a>{% endif %}</td>
</tr>
{% endfor %}

Expand Down

0 comments on commit 9544b3e

Please sign in to comment.