Skip to content

Commit

Permalink
Fix missing connection between protocol and host
Browse files Browse the repository at this point in the history
  • Loading branch information
physikerwelt authored Oct 22, 2023
1 parent 556b326 commit f1b5136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mediawiki/LocalSettings.d/Wikibase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
if ($wikibaseHost === 'localhost') {
$portalHost = getenv('WIKIBASE_SCHEME') . '://localhost:' . getenv('WIKIBASE_PORT');
} else {
$portalHost = getenv('WIKIBASE_SCHEME') . $wikibaseHost;
$portalHost = getenv('WIKIBASE_SCHEME') . '://'. $wikibaseHost;
}

# enable linking between wikibase and content pages
Expand Down Expand Up @@ -65,4 +65,4 @@
'length' => 1000,
],
];
}
}

0 comments on commit f1b5136

Please sign in to comment.