Issues with MySQL 5.21-beta
I recently upgraded to MySQL 5.21 beta and discovered that the home page of my Siteframe (v5) sites all look a bit strange. Evidently this little bit of SQL:
ORDER BY page_id DESC LIMIT 20
returns the FIRST 20 page_ids, and not the LAST 20. I made this change in index.php:
ORDER BY page_created DESC LIMIT 20
I presume this is a beta bug in MySQL 5.21, and it will be fixed shortly. But you can fix it yourself with this simple change.
