Mollywhite has uploaded a new change for review. https://gerrit.wikimedia.org/r/72638
Change subject: Use wgDBname for the BookManagerv2DBname ...................................................................... Use wgDBname for the BookManagerv2DBname Previously the DB name was hardcoded in, but this required any wiki to have a DB named "wikidb". Change-Id: I919572ea4a0c66e605c8fb7af67f237dfd7f5929 --- M BookManagerv2.php 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BookManagerv2 refs/changes/38/72638/1 diff --git a/BookManagerv2.php b/BookManagerv2.php index 68324c5..5502e5c 100644 --- a/BookManagerv2.php +++ b/BookManagerv2.php @@ -54,7 +54,7 @@ * @var bool|string: Value of $wgDBname for the MediaWiki instance housing * schemas; false if not set. */ -$wgBookManagerv2DBname = 'wikidb'; +$wgBookManagerv2DBname = $wgDBname; /** * Takes a string of JSON and formats it for readability. -- To view, visit https://gerrit.wikimedia.org/r/72638 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I919572ea4a0c66e605c8fb7af67f237dfd7f5929 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/BookManagerv2 Gerrit-Branch: master Gerrit-Owner: Mollywhite <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
