Changes made from v1.1 to v1.2 (10. jan 2005)
==============================
* Added possibility for users to update their info (members/ezusermanager_update.php)
* Added possibility for users to select language themself
* Added $show_flags in config-file which let you choose to hide the "flag-line"
* Moved some funtions from the end of the config-file to the core-file
* Re-arranged the settings in the config-file
* Added "days since registration" in the admin-area
* Made a separate language-file containing the emails for easier customizing

Changes made from v1.0 to v1.1: (01. jan 2005)
===============================
Many thanks to Roger Koukerjinian for making me aware of these bugs!

In short:
* Fixed error in the link in the confirmation-mail
* Fixed bug causing a missing text-line in the confirmation-mail
* Fixed the bug causing a lot of error-messages appearing when activating user
* Fixed bug causing the info in the "forgotten-password"-mail to be missing
* Changed all filenames to lowercase, due to many FTP-clients changing names to lowercase when uploading
* Changed the default tablename to lowercase due to most MySQL-client changing to lowercase when importing .sql-file
* Added the "Forgott password"-string in the language-files, instead of being "hard-coded" so that it may be translated


The changes in detail:
In the confirmation-mail:
Replaced 
$firstname 
with
$user

Error with link in mail:
Replaced
http://$ezUserManager_serverName$PHP_SELF
with
$ezUserManager_fullUrl

A lot of errormessages when clicking the confirm-link:
Replaced 
else { 
with
if ($action == "add") {

Missing text in mail:
Replaced
mailbody .= "$mail_if_no_click\n"; 
with
$mailBody .= "$mail_if_no_click \n";

The forgott-password-function was missing all the data:
Added
include "./lang/$lang.lang.php"
before
$mailbody = $mailbody_forgott;

This last fix is temporarily! 
Including the same file twice is bad programming, but it works! :P
I plan on making a function for this instead, wich probably will be included in the next release.