diff --git a/src/modules/core.js b/src/modules/core.js index 6373208..1ccf2e3 100644 --- a/src/modules/core.js +++ b/src/modules/core.js @@ -1642,7 +1642,7 @@ * @param {number} revId Revision ID of the draft that is being accepted * @param {boolean} isBiography Value of the "Is the article a biography?" check box * @param {Array} newWikiProjects Value of the "Add WikiPrjects" part of the form. The is a chips interface called jquery.chosen. Note that if there are existing WikiProject banners on the page, the form will auto-add those to the "Add WikiProjects" part of the form when it first loads. - * @param {string} lifeStatus Value of "Is the subject alive?" dropdown list ("unknown", "blp", "dead") + * @param {string} lifeStatus Value of "Is the subject alive?" dropdown list ("unknown", "living", "dead") * @param {string} subjectName Value of the "Subject name (last, first)" text input, or "" if blank * @return {Object} wikicode */ @@ -1686,7 +1686,7 @@ '{{WikiProject Biography}}' ); - if ( lifeStatus === 'blp' ) { + if ( lifeStatus === 'living' ) { bannerShellExtraParams += ' |blp=yes'; } else if ( lifeStatus === 'dead' ) { bannerShellExtraParams += ' |blp=no';