Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions _settings/LocalSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@
wfLoadExtension( 'ReplaceText' );
wfLoadExtension( 'WikiEditor' );
wfLoadExtension( 'Interwiki' );
wfLoadExtension( 'CodeEditor' );
wfLoadExtension( 'Scribunto' );
wfLoadExtension( 'SyntaxHighlight_GeSHi' );
wfLoadExtension( 'DataTransfer' );
Expand Down Expand Up @@ -350,7 +349,8 @@
// WLDR-194
wfLoadExtension( 'ContributionScores' );
$wgContribScoreIgnoreBots = true;
$wgContribScoreIgnoreBlockedUsers = true;
// MBSD-369 Stops ContributionScores from looking into the retired ipblocks (bug T379715)
$wgContribScoreIgnoreBlockedUsers = false;
$wgContribScoreIgnoreUsernames = [
'Wikiteq',
'WikiWorks',
Expand Down Expand Up @@ -475,6 +475,9 @@
// WLDR-382
wfLoadExtension( 'MagicNoCache' );

// WLDR-406
wfLoadExtension( 'Widgets' );

if ( getenv( 'SMTP_SERVER' ) ) {
$wgSMTP = [
'host' => getenv( 'SMTP_SERVER' ),
Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- /matomo/data:/var/lib/mysql

web:
image: ghcr.io/wikiteq/taqasta:1.39.13-20251029-3c6664f # BEFORE upgrading to 1.4x, make sure the PR https://github.com/WikiTeq/Taqasta/pull/264 was merged or MW version >= 1.43.1
image: ghcr.io/wikiteq/taqasta:1.43.8-20260512-63ee0c9
restart: unless-stopped
extra_hosts:
- "gateway.docker.internal:host-gateway"
Expand Down