Helo, after some time I'm comming with another question.
Is it possible to sort elements in a dropdown menu by filename, not by thumbnail ID? I guess this menu is sorted by the thumbnail ID, I found some code in plog-admin-functions.php in functions plog_edit_collection_form and plog_edit_album_form, something about sql queries and maybe javascript, but changing seems too difficult for me.
I mean the menu in the Admin mode, while editing collection/album preferences like name, description and thumbnail - right this menu. I apologize, I didn't specify this before...
Change the last line of the query in plog_edit_collection_form() to: <blockquote>ORDER BY a.name,p.path";</blockquote> Change the line in plog_edit_album_form() to: <blockquote>$sql = "SELECT id,caption,path FROM ".TABLE_PREFIX."pictures p WHERE p.parent_album = '" . $album_id . "' ORDER BY p.path";</blockquote>
I added a trac ticket before on this same idea (see here -> http://dev.plogger.org/ticket/161), but it has not yet been included in the codebase. It will be at some point though.