https://bugzilla.wikimedia.org/show_bug.cgi?id=48838

--- Comment #4 from Jamie Thingelstad <[email protected]> ---
It does seem that one issue is in setupEditPage in SF_AutoeditAPI.php on line
324. The call to $wgUser->editToken() is deprecated and appears like it should
be $wgUser->getEditToken() instead.

- 'wpEditToken' => $wgUser->isLoggedIn() ? $wgUser->editToken() :
EDIT_TOKEN_SUFFIX,
+ 'wpEditToken' => $wgUser->isLoggedIn() ? $wgUser->getEditToken() :
EDIT_TOKEN_SUFFIX,

However, I'm still getting errors but they are different now.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to