fix that the issue summary is not shown in the website's title when editing the issue - fixes #466

Sat, 09 Nov 2024 09:25:59 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 09 Nov 2024 09:25:59 +0100
changeset 332
dc1d44bb9992
parent 331
78a84c344efb
child 333
124f605ec40a

fix that the issue summary is not shown in the website's title when editing the issue - fixes #466

src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog-de.jspf file | annotate | diff | comparison | revisions
src/main/webapp/WEB-INF/changelogs/changelog.jspf file | annotate | diff | comparison | revisions
--- a/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt	Sat Nov 09 09:16:41 2024 +0100
+++ b/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt	Sat Nov 09 09:25:59 2024 +0100
@@ -363,6 +363,7 @@
             }
 
             with(http) {
+                pageTitle = "#${issue.id} ${issue.subject} (${issue.project.name})"
                 view = IssueEditView(
                     issue,
                     path.projectInfo.versions,
--- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Nov 09 09:16:41 2024 +0100
+++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf	Sat Nov 09 09:25:59 2024 +0100
@@ -35,6 +35,7 @@
     <li>Der globale RSS-Feed enthält nun auch den Projektnamen im Titel eines Eintrages.</li>
     <li>Status und Kategorie eines Vorgangs sind nun auch im RSS-Feed korrekt lokalisiert.</li>
     <li>Fehler behoben, bei dem die Checkbox zum Erstellen weiterer Vorgänge nicht angekreuzt bleibt.</li>
+    <li>Fehler behoben, bei dem der Vorgangstitel im Vorgangseditor nicht im Webseitentitel angezeigt wird.</li>
 </ul>
 
 <h3>Version 1.3.0</h3>
--- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Nov 09 09:16:41 2024 +0100
+++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf	Sat Nov 09 09:25:59 2024 +0100
@@ -34,6 +34,7 @@
     <li>Fix critical issue where saving an issue from the global list erases all data for that issue.</li>
     <li>Fix missing localization for issue status and category in RSS feed.</li>
     <li>Fix that the "create more" checkbox does not stay checked.</li>
+    <li>Fix that the issue summary is not shown in the website's title when editing the issue.</li>
 </ul>
 
 <h3>Version 1.3.0</h3>

mercurial