Sort scrapbook list alphabetically

Permalink
I have a project that is using a lot of scrapbooks. I wanted to list the scrapbooks alphabetically to make them easier to locate.

/concrete/helpers/concrete/scrapbook.php

line 26

Add ORDER BY to the query.

return $db->getAll('SELECT arID, arHandle FROM Areas WHERE cID='.intval($scrapbookPage->getCollectionId()).' ORDER BY arHandle');

mrnoisy