This repository was archived by the owner on Mar 16, 2023. It is now read-only.
File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
# 0.27b0 (2020-07-16)
2
2
3
3
* introduced ` IMPRINT_TEXT ` to change the default text of the imprint link
4
+ * HTML-escape ` IMPRINT_TEXT ` to prevent the admin from breaking the HTML output
4
5
* updated jQuery to version 3.5.1
5
6
6
7
# 0.26b0 (2020-05-07)
Original file line number Diff line number Diff line change 41
41
<li<?php if (empty (SECRET_URI )) { ?> class="active"<?php } ?> ><a href="/">Share a secret.</a></li>
42
42
<li<?php if (0 === strcmp (SECRET_URI , HOW_PAGE_NAME )) { ?> class="active"<?php } ?> ><a href="/how">How does this service work?</a></li>
43
43
<li<?php if (0 === strcmp (SECRET_URI , PUB_PAGE_NAME )) { ?> class="active"<?php } ?> ><a href="/pub">Download the public key.</a></li>
44
- <li<?php if (0 === strcmp (SECRET_URI , IMPRINT_PAGE_NAME )) { ?> class="active"<?php } ?> ><a href="/imprint"><?= (defined ("IMPRINT_TEXT " ) && (null !== IMPRINT_TEXT )) ? IMPRINT_TEXT : "Who provides this service? " ?> </a></li>
44
+ <li<?php if (0 === strcmp (SECRET_URI , IMPRINT_PAGE_NAME )) { ?> class="active"<?php } ?> ><a href="/imprint"><?= (defined ("IMPRINT_TEXT " ) && (null !== IMPRINT_TEXT )) ? html ( IMPRINT_TEXT ) : "Who provides this service? " ?> </a></li>
45
45
</ul>
46
46
</div>
47
47
</div>
You can’t perform that action at this time.
0 commit comments