Dashboard says “no posts found” even though there are some posts

Try the fix posted here: http://sourceforge.net/tracker/?func=detail&aid=3485384&group_id=315685&atid=1328061

It worked for me.

translations.php line 726
Change this: $pattern =
‘/LIMIT\s*(\d+)((\s*,?\s*)(\d+))(;{0,1})$/is’; to this: $pattern =
‘/LIMIT\s
(\d+)((\s*,?\s*)(\d+)*);{0,1}$/is’;

Removing the extra parentheses allows “LIMIT 0, 10” to become “TOP
10”. With the extra parentheses, the “0” is used instead.

Leave a Comment