Topic: extensions uninstall note(s)
in admin/extensions.php around line 90 (foreach-loop):
if ($cur_note['attributes']['type'] == 'uninstall' && trim($cur_note['content']) != '')
$uninstall_note = '\''.$db->escape(trim($cur_note['content'])).'\'';
Change this to the following, so that it displays more than one note:
if ($cur_note['attributes']['type'] == 'uninstall' && trim($cur_note['content']) != '')
$uninstall_note .= '\''.$db->escape(trim($cur_note['content'])).'\'';