# HG changeset patch # User Mike Becker # Date 1736795557 -3600 # Node ID 4f0d0d1a7fab60bc5c241a21bfb7073cb3c0387f # Parent 3a581d985b87bb179f5bb01f1bb9c1305e623373 fix broken page title - fixes #493 diff -r 3a581d985b87 -r 4f0d0d1a7fab src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt --- a/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt Sat Dec 28 18:21:16 2024 +0100 +++ b/src/main/kotlin/de/uapcore/lightpit/servlet/ProjectServlet.kt Mon Jan 13 20:12:37 2025 +0100 @@ -363,7 +363,8 @@ } with(http) { - pageTitle = "#${issue.id} ${issue.subject} (${issue.project.name})" + pageTitle = (if (issue.id < 0) i18n("button.issue.create") + else "#${issue.id} ${issue.subject}") + " (${issue.project.name})" view = IssueEditView( issue, path.projectInfo.versions, diff -r 3a581d985b87 -r 4f0d0d1a7fab src/main/webapp/WEB-INF/changelogs/changelog-de.jspf --- a/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Sat Dec 28 18:21:16 2024 +0100 +++ b/src/main/webapp/WEB-INF/changelogs/changelog-de.jspf Mon Jan 13 20:12:37 2025 +0100 @@ -31,6 +31,7 @@ Fehler behoben, bei dem die Formulare für Versionen und Vorgänge existierende Datumsfelder mit dem falschen Jahr befüllen, wenn sich das Datum in Kalenderwoche 1, aber im Dezember befindet. +
  • Kaputten Seitentitel beim Erstellen von neuen Vorgängen behoben (Regression von Version 1.4.0).
  • Version 1.4.0

    diff -r 3a581d985b87 -r 4f0d0d1a7fab src/main/webapp/WEB-INF/changelogs/changelog.jspf --- a/src/main/webapp/WEB-INF/changelogs/changelog.jspf Sat Dec 28 18:21:16 2024 +0100 +++ b/src/main/webapp/WEB-INF/changelogs/changelog.jspf Mon Jan 13 20:12:37 2025 +0100 @@ -31,6 +31,7 @@ Fix that the versions form (release and EOL date) and the issue form (ETA) used the week-year instead of the year for loading an existing date into the form. +
  • Fix broken page title when creating new issues (introduced with version 1.4.0).
  • Version 1.4.0