MediaWiki:DonationForm.js: Difference between revisions
Content deleted Content added
Dumb hack to remove ACH for Portal test against Fundraise Up |
pass contact_id and/or contact_hash params to payments - phab:T381405 |
||
Line 842:
if ( mw.util.getParamValue( 'pym_appeal' ) ) {
params.appeal = mw.util.getParamValue( 'pym_appeal' );
}
// https://phabricator.wikimedia.org/T381405
if ( mw.util.getParamValue( 'contact_id' ) ) {
params.contact_id = mw.util.getParamValue( 'contact_id' );
}
if ( mw.util.getParamValue( 'contact_hash' ) ) {
params.contact_hash = mw.util.getParamValue( 'contact_hash' );
}
|