diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 1e6024f45..42f848160 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -48,6 +48,7 @@ - fix: visitor name disappearing on preview in CS - The Events Calendar is now the new Calendar with some fun new features. All your existing Events Calendars will be migrated automatically. + - rfe: multiple redirects on a page - which one? - Major change: password recovery is now based on profile fields rather than email account access *** PLEASE READ THE GOTCHAS *** diff --git a/docs/upgrades/templates-7.3.0/default-wiki-page-edit.tmpl b/docs/upgrades/templates-7.3.0/default-wiki-page-edit.tmpl index 143da449d..73d73ee34 100644 --- a/docs/upgrades/templates-7.3.0/default-wiki-page-edit.tmpl +++ b/docs/upgrades/templates-7.3.0/default-wiki-page-edit.tmpl @@ -7,13 +7,13 @@ - - + + - + - +
diff --git a/lib/WebGUI/Asset.pm b/lib/WebGUI/Asset.pm index 0a7e49fd5..6239d18d4 100644 --- a/lib/WebGUI/Asset.pm +++ b/lib/WebGUI/Asset.pm @@ -1854,7 +1854,7 @@ Returns "". sub view { my $self = shift; if ($self->session->var->get("adminOn")) { - return $self->getToolbar; + return $self->getToolbar.' '.$self->getTitle; } else { return ""; }