Skip to content

Commit

Permalink
Admin template entrylist: entry title was double escaped.
Browse files Browse the repository at this point in the history
Cherry-picked from master.

Signed-off-by: Thomas Hochstein <thh@inter.net>
  • Loading branch information
Stephan Brunker authored and th-h committed Apr 20, 2020
1 parent 64b5d56 commit c66451e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Version 2.3.5-beta1 ()
------------------------------------------------------------------------

* Fix: Entry title in backend list of entries was double escaped.

* Fix: Don't drop upgraded_version from local plugin cache.

* Fix: Regular expression in functions_routing.incx.php
Expand Down
2 changes: 1 addition & 1 deletion templates/2k11/admin/entries.inc.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
</div>
{/if}

<h3><a href="?serendipity[action]=admin&amp;serendipity[adminModule]=entries&amp;serendipity[adminAction]=edit&amp;serendipity[id]={$entry.id}" title="#{$entry.id}: {$entry.title|escape}">{$entry.title|escape}</a></h3>
<h3><a href="?serendipity[action]=admin&amp;serendipity[adminModule]=entries&amp;serendipity[adminAction]=edit&amp;serendipity[id]={$entry.id}" title="#{$entry.id}: {$entry.title}">{$entry.title}</a></h3>

<ul class="plainList clearfix actions">
{if $entry.preview || (!$showFutureEntries && ($entry.timestamp >= $serverOffsetHour))}
Expand Down

0 comments on commit c66451e

Please sign in to comment.