XF 1.3 Admin Phrase Filter Limit

Snog

Well-known member
I must be missing something, somewhere. I've searched through the settings and the library/XenForo core code and I can't find where the number of phrases returned when filtering phrases is set to 100.

I'd like to set this to something much higher, or even eliminate the limit if possible.

Anyone have any idea where the limit is set?
 
It's actually in the Controller action.

XenForo_ControllerAdmin_Language::actionPhrases

PHP:
$perPage = 100;

Note: If you have the popular @guiltar add-on that manages phrases, that setting is overridden in his custom controller action so you'd have to edit it there instead.
 
It's actually in the Controller action.

XenForo_ControllerAdmin_Language::actionPhrases

PHP:
$perPage = 100;

Note: If you have the popular @guiltar add-on that manages phrases, that setting is overridden in his custom controller action so you'd have to edit it there instead.

I don't know how I missed that!

Thanks. :)
 
Top Bottom