On Wed, 2009-03-04 at 17:27 +0100, Maarten van Grootel wrote:
Hi Bob,
You can override theme_upload_attachments: http://api.drupal.org/api/function/theme_upload_attachments/6
Put something like the following in your template.php.
YOURTHEME_upload_attachments($files) { // Reverse files $files = array_reverse($files) return theme_upload_attachements($files); }
Thanks Maarten, will try this tomorrow.
Regards,