diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 732c94d09f..ee68036506 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -23,6 +23,7 @@ Changelog * Fix: Optimised database queries on group edit page (Ashia Zawaduk) * Fix: Choosing a popular search term for promoted search results now works correctly after pagination (Janneke Janssen) * Fix: IDs used in tabbed interfaces are now namespaced to avoid collisions with other page elements (Janneke Janssen) + * Fix: Page title not displaying page name when moving a page (Trent Holliday) 1.9 (16.02.2017) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 879b4f82cc..96fe9c8c08 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -215,6 +215,7 @@ Contributors * Kjartan Sverrisson * LB (Ben Johnston) * Christine Ho +* Trent Holliday Translators =========== diff --git a/docs/releases/1.10.rst b/docs/releases/1.10.rst index fa43830455..a9b99eb77d 100644 --- a/docs/releases/1.10.rst +++ b/docs/releases/1.10.rst @@ -37,6 +37,7 @@ Bug fixes * Optimised database queries on group edit page (Ashia Zawaduk) * Choosing a popular search term for promoted search results now works correctly after pagination (Janneke Janssen) * IDs used in tabbed interfaces are now namespaced to avoid collisions with other page elements (Janneke Janssen) + * Page title not displaying page name when moving a page (Trent Holliday) Upgrade considerations diff --git a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html index 70390cbb36..114bb98d7a 100644 --- a/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html +++ b/wagtail/wagtailadmin/templates/wagtailadmin/pages/confirm_move.html @@ -1,6 +1,6 @@ {% extends "wagtailadmin/base.html" %} {% load i18n %} -{% block titletag %}{% blocktrans with title=page.get_admin_display_title %}Move {{ title }}{% endblocktrans %}{% endblock %} +{% block titletag %}{% blocktrans with title=page_to_move.get_admin_display_title %}Move {{ title }}{% endblocktrans %}{% endblock %} {% block content %} {% trans "Move" as move_str %} {% include "wagtailadmin/shared/header.html" with title=move_str subtitle=page_to_move.get_admin_display_title icon="doc-empty-inverse" %}