diff --git a/docs/simplesamlphp-changelog.md b/docs/simplesamlphp-changelog.md
index e07b0f8ea5b520d2d4ebad37d1004211828e899b..70d2d8444f6941e6cc9d32a9ba7266265f409c4f 100644
--- a/docs/simplesamlphp-changelog.md
+++ b/docs/simplesamlphp-changelog.md
@@ -16,6 +16,10 @@ Released TBD
 * Bumped dependencies
 * Fixed a TypeError when accessing the module.php endpoint without specifying a module (#1907)
 
+`core`
+
+* Fixed a broken template for the WarnShortSSOInterval authproc-filter (#1920)
+
 `metarefresh`
 
 * Added support for 'pdo' outputFormat (v0.11)
diff --git a/modules/core/templates/short_sso_interval.twig b/modules/core/templates/short_sso_interval.twig
index f0a337851ef6a341ed5d65ff7e61666f38c07fca..29663752edfd973c6cb6128526aa461d89b0f156 100644
--- a/modules/core/templates/short_sso_interval.twig
+++ b/modules/core/templates/short_sso_interval.twig
@@ -11,6 +11,6 @@
         <div class="trackidtext">
             <p>{{ '{errors:report_trackid}'|trans }}<span class="trackid">{{ trackId }}</span></p>
         </div>
-        <input type="submit" name="continue" id="contbutton" value="'{core:short_sso_interval:retry}'|trans|escape('html') }}" autofocus>
+        <input type="submit" name="continue" id="contbutton" value="{{ '{core:short_sso_interval:retry}'|trans|escape('html') }}" autofocus>
     </form>
 {% endblock %}