Skip to content

Commit

Permalink
Enable wikidiff2 PHP extension explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair3149 committed Nov 11, 2024
1 parent bc0127c commit 5f1ada0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ RUN set -eux; \
luasandbox \
imagick \
redis \
# install-php-extensions should enable wikidiff2 but somehow it does not
wikidiff2 \
; \
rm -r /tmp/pear; \
\
Expand Down
12 changes: 8 additions & 4 deletions config/LocalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -1321,28 +1321,32 @@
// ],
// $sk->msg( 'footer-analytics' )->escaped()
//);
$footerlinks['statuspage'] = Html::rawElement( 'a',
$footerlinks['statuspage'] = Html::rawElement(
'a',
[
'href' => 'https://status.starcitizen.tools',
'rel' => $rel
],
$sk->msg('footer-statuspage')->escaped()
);
$footerlinks['github'] = Html::rawElement( 'a',
$footerlinks['github'] = Html::rawElement(
'a',
[
'href' => 'https://github.com/StarCitizenTools',
'rel' => $rel
],
$sk->msg('footer-github')->escaped()
);
$footerlinks['patreon'] = Html::rawElement( 'a',
$footerlinks['patreon'] = Html::rawElement(
'a',
[
'href' => 'https://www.patreon.com/starcitizentools',
'rel' => $rel
],
$sk->msg('footer-patreon')->escaped()
);
$footerlinks['kofi'] = Html::rawElement( 'a',
$footerlinks['kofi'] = Html::rawElement(
'a',
[
'href' => 'https://ko-fi.com/starcitizentools',
'rel' => $rel
Expand Down

0 comments on commit 5f1ada0

Please sign in to comment.