Page MenuHomePhabricator

Porter stemmer library uses obsolete array access syntax which raises warning under PHP 7.4
Closed, ResolvedPublic

Related Objects

Event Timeline

epriestley triaged this task as Wishlist priority.Jan 13 2020, 4:49 PM
epriestley created this task.

I thought this was some kind of complicated mess with the regex on line 420, but it's actually an issue with this:

... $matches[1]{2} ...

...on line 422.

The {...} should just be [...].