I am a newbie to Joomla and I am not sure this is the right place for this topic...
I found a couple of bugs in Joomla 1.0.11. Here they are:
1. MAJOR BUGS
1.1 In file includes/joomla.php, there are 2 bugs:
- In method mosSession::login(), "update" in following sequence fails:
// initialize session data
$session =& $this->_session;
$session->guest = 0;
$session->username = $row->username;
$session->userid = intval( $row->id );
$session->usertype = $row->usertype;
$session->gid = intval( $row->gid );
$session->update();
Fix is as follow:
. . .
$session->guest = '0';
. . .
$session->update();
- In method mosSession::logout(), "update" in following sequence fails:
$session =& $this->_session;
$session->guest = 1;
$session->username = '';
$session->userid = '';
$session->usertype = '';
$session->gid = 0;
$session->update();
Fixes are as follow:
. . .
$session->userid = '0';
. . .
$session->gid = '0';
. . .
$session->update();
I have read hundred of topics in dozen of forums (french and english ones) where
people where talking about this "remaining login form + missing user menu" problem.
I hope this will help...
I have also noticed the problem in version 1.0.10. I did not check for earlier versions.
1.2 In file com_registration/registration.php, there is 1 bug :
Line 155, you have to add:
$row->params = 'editor=tinymce';
otherwise the new user is not inserted into 'users' table...
2. MINOR BUGS
2.1 In file installation/sql/sample_data.sql:
Translated data for contact_details.postcode column mighr be too long:
that is the case in french and probably in other languages!
I propose to make this column a bit longer (15 characters for example.)
Apart these issues, I LOVE Joomla!!!

Cheers!