Page MenuHomePhabricator

Convert ContributionTracking to use extension registration
Closed, ResolvedPublic

Description

The ContributionTracking extension needs to be converted to use the new extension registration system. More details are available on T87875.

Event Timeline

Change 213315 had a related patch set uploaded (by Parent5446):
Updated extension registration to new system

https://gerrit.wikimedia.org/r/213315

Change 213315 merged by jenkins-bot:
Updated extension registration to new system

https://gerrit.wikimedia.org/r/213315

With extension registration some defaults are no more applied and are left as NULL instead. The PHP file had:

$wgContributionTrackingDBserver = $wgDBserver;
$wgContributionTrackingDBname = $wgDBname;
$wgContributionTrackingDBuser = $wgDBuser;
$wgContributionTrackingDBpassword = $wgDBpassword;

Filled as T195814