Pass __METHOD__ to query() call

Change-Id: Ie4c5615991c833dd60e0cb5e290cd61f6890554e
This commit is contained in:
Aaron Schulz 2015-09-25 00:07:39 -07:00
parent e7babad2fb
commit 4118679388

View file

@ -515,7 +515,8 @@ class AFComputedVariable {
);
$res = $dbr->query(
"SELECT rev_user_text FROM ($sqlTmp) AS tmp " .
"GROUP BY rev_user_text ORDER BY MAX(rev_timestamp) DESC LIMIT 10"
"GROUP BY rev_user_text ORDER BY MAX(rev_timestamp) DESC LIMIT 10",
__METHOD__
);
$users = array();