Topic: Else if syntax
Ok, this is not really a bug, but rather a syntax improvement suggestion
In extensions.php I found this
// Uninstall an extension
else if (isset($_POST['uninstall']))
Wouldn't it be better with some real php syntax like this
// Uninstall an extension
elseif (isset($_POST['uninstall']))
I havn't checked, but I suspect that this syntax can be found elsewhere in the code.
ref:http://se.php.net/manual/en/control-structures.elseif.php