Skip to content

Commit

Permalink
Add WikiApiary footer icon for permanentfuturelabwiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Southparkfan committed Sep 30, 2015
1 parent ba63244 commit 630757f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions LocalSettings.php
Expand Up @@ -108,12 +108,12 @@
'wgResourceLoaderMaxage' => array(
'default' => array(
'versioned' => array(
'server' => 30 * 24 * 60 * 60,
'server' => 30 * 24 * 60 * 60, // 30 days
'client' => 30 * 24 * 60 * 60,
),
'unversioned' => array(
'server' => 30 * 60,
'client' => 30 * 60,
'server' => 5 * 24 * 60 * 60, // 5 days
'client' => 5 * 24 * 60 * 60,
),
),
),
Expand Down Expand Up @@ -1190,6 +1190,14 @@ function efGetSiteParams( $conf, $wiki ) {
'alt' => 'Powered by Miraheze',
);

if ( $wgDBname === 'permanentfuturelabwiki' ) {
$wgFooterIcons['poweredby']['wikiapiary'] = array(
'src' => 'https://wikiapiary.com/w/images/wikiapiary/b/b4/Monitored_by_WikiApiary.png',
'url' => 'https://wikiapiary.com/wiki/Permanent_Future_Lab'
'alt' => 'Monitored by WikiApiary',
);
}

# ReCaptcha
$wgCaptchaClass = 'ReCaptchaNoCaptcha';
$wgReCaptchaSendRemoteIP = false; // Don't send users' IPs
Expand Down

0 comments on commit 630757f

Please sign in to comment.