This is to confirm to use both LukeG84 and CriGoT suggestion works
1. show the media library correctly, with ot without pagination.
2. may edit and delete post in media library.
You have to change two sections. Both in function translate_limit().
Section 1:
From:’/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)(;{0,1})$/is’
To: ‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+)*)$/is’;
Section 2 (Two if comparision statement):
From: count($limit_matches) == 5
To: count($limit_matches) >= 5
Wish it helps!