https://bugzilla.wikimedia.org/show_bug.cgi?id=50251
Brad Jorsch <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|Unprioritized |Low Status|NEW |RESOLVED Resolution|--- |WONTFIX --- Comment #1 from Brad Jorsch <[email protected]> --- string.gfind is deprecated in Lua 5.1, and may not be available depending on whether Lua was compiled with LUA_COMPAT_GFIND or not. It will be unavailable if we ever move to Lua 5.2. If you really need mw.ustring.gfind for some inexplicable reason, you can assign mw.ustring.gfind = mw.ustring.gmatch. But don't do that, just use mw.ustring.gmatch. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
