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'])).'\'';
FluxBB - v1.4.8

Re: extensions uninstall note(s)

?
is it me or those two lines of code are equal?

Re: extensions uninstall note(s)

He changed = to .=
And that won't work. It will cause an SQL error.

Re: extensions uninstall note(s)

Ok, but it won't display more than one uninstall note, right?

FluxBB - v1.4.8

Re: extensions uninstall note(s)

It's supposed to only display one note of each type and ignore the rest.

Re: extensions uninstall note(s)

But it displays more than one note when installing...

FluxBB - v1.4.8

Re: extensions uninstall note(s)

And what about this?

FluxBB - v1.4.8