From: jenkins-bot Date: Mon, 26 Oct 2015 19:02:33 +0000 (+0000) Subject: Merge "ApiBase::PARAM_DFLT => null is the default anyway" X-Git-Tag: 1.31.0-rc.0~9236 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=376879ee06871beb31ca540bbcc87843aa2fb744;p=lhc%2Fweb%2Fwiklou.git Merge "ApiBase::PARAM_DFLT => null is the default anyway" --- 376879ee06871beb31ca540bbcc87843aa2fb744 diff --cc includes/api/ApiQueryRevisionsBase.php index 609efb00f0,2bc6570262..ebc5c2e010 --- a/includes/api/ApiQueryRevisionsBase.php +++ b/includes/api/ApiQueryRevisionsBase.php @@@ -492,17 -485,10 +491,14 @@@ abstract class ApiQueryRevisionsBase ex ApiBase::PARAM_HELP_MSG => 'apihelp-query+revisions+base-param-diffto', ), 'difftotext' => array( - ApiBase::PARAM_DFLT => null, ApiBase::PARAM_HELP_MSG => 'apihelp-query+revisions+base-param-difftotext', ), + 'difftotextpst' => array( + ApiBase::PARAM_DFLT => false, + ApiBase::PARAM_HELP_MSG => 'apihelp-query+revisions+base-param-difftotextpst', + ), 'contentformat' => array( ApiBase::PARAM_TYPE => ContentHandler::getAllContentFormats(), - ApiBase::PARAM_DFLT => null, ApiBase::PARAM_HELP_MSG => 'apihelp-query+revisions+base-param-contentformat', ), );