mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-21 16:13:00 +00:00
Really fix #205
This commit is contained in:
parent
8a05d79724
commit
3c5a407356
2 changed files with 7 additions and 2 deletions
|
@ -2,6 +2,11 @@
|
|||
This file holds the changelog for Pepperminty Wiki. This is the master list of things that have changed (second only to the commit history!) - though the information for any particular release can also be found in the description of it's page for every release made on GitHub too.
|
||||
|
||||
|
||||
## v0.22-beta2
|
||||
|
||||
### Fixed
|
||||
- Hide the admin email address at the bottom of every page - we missed it in v0.22-beta1 (but got every other one though :P)
|
||||
|
||||
## v0.22-beta1
|
||||
Make sure you have PHP 7.3+ when you update past this point! It isn't the end of the world if you don't, but it will make you more secure if you do.
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ class page_renderer
|
|||
<p>{footer-message}</p>
|
||||
<p>Powered by Pepperminty Wiki {version}, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or <a href='//github.com/sbrl/Pepperminty-Wiki' title='Github Issue Tracker'>open an issue</a>.</p>
|
||||
<p>Your local friendly moderators are {admins-name-list}.</p>
|
||||
<p>This wiki is managed by <a href='mailto:{admin-details-email}'>{admin-details-name}</a>.</p>
|
||||
<p>This wiki is managed by {admin-details}.</p>
|
||||
</footer>
|
||||
{navigation-bar-bottom}
|
||||
{all-pages-datalist}";
|
||||
|
@ -186,8 +186,8 @@ class page_renderer
|
|||
"{navigation-bar}" => self::render_navigation_bar($settings->nav_links, $settings->nav_links_extra, "top"),
|
||||
"{navigation-bar-bottom}" => self::render_navigation_bar($settings->nav_links_bottom, [], "bottom"),
|
||||
|
||||
"{admin-details}" => hide_email($settings->admindetails_email, $settings->admindetails_name),
|
||||
"{admin-details-name}" => $settings->admindetails_name,
|
||||
"{admin-details-email}" => $settings->admindetails_email,
|
||||
|
||||
"{admins-name-list}" => implode(", ", array_map(function($username) { return page_renderer::render_username($username); }, $settings->admins)),
|
||||
|
||||
|
|
Loading…
Reference in a new issue