Index: branches/unlabeled/unlabeled-1.15.2/core/units/users/users_tag_processor.php =================================================================== diff -u -r7641 -r7784 --- branches/unlabeled/unlabeled-1.15.2/core/units/users/users_tag_processor.php (.../users_tag_processor.php) (revision 7641) +++ branches/unlabeled/unlabeled-1.15.2/core/units/users/users_tag_processor.php (.../users_tag_processor.php) (revision 7784) @@ -184,7 +184,8 @@ return $submit_value; } - return $this->Application->GetVar('save_username'); // from cookie + $username = $this->Application->GetVar('save_username'); // from cookie + return $username === false ? '' : $username; } }