SearchResultSet: MW version number should be a string in wfDeprecated call
authorDerick Alangi <alangiderick@gmail.com>
Wed, 15 May 2019 14:17:23 +0000 (15:17 +0100)
committerDerick Alangi <alangiderick@gmail.com>
Wed, 15 May 2019 14:17:23 +0000 (15:17 +0100)
commit09567cc3680e97ad004599d7b8f35d84b1e38edf
tree9dd4de85710751898bd8bfdc79448ba0e2628dbe
parent18a53cb48bc5848e490f3bc1c444e26ef8bc8299
SearchResultSet: MW version number should be a string in wfDeprecated call

Seems this was a typo and I think 1.32 which is a double/float will be
implicitly converted to true (bool) because it will resolve 1.32 to 1 as
integer and then 1 which maps to true (bool).

To avoid this, use '1.32' instead of the integer form of the version.

Change-Id: Ifaf6ab0d36bc02bd1707f8caf375f65a30eb1af5
includes/search/SearchResultSet.php