Module  : User in log out link
Version : 1.0.0
Author  : Maurice Makaay

This module will add the username of the authenticated user to the Phorum
log out link. The text of the logout link can be tweaked through this
module's language files.


Install:
--------

- Unpack the archive;

- Move the directory "user_in_logoutlink" to the directory "mods"
  within your Phorum installation;

- Login as administrator in Phorum's administrative interface and
  go to the "Modules" section;

- Enable the module "Show username in log out link".


Customization:
--------------

You can customize what text to show in the logout link, by editing the
language file(s) for this module (by default lang/english.php is
provided, but you can create one for every language if you want to
override the default behavior of lang/english.php).

The language file describes the text to show for the log out link. In
this text, you can make use of the following special strings:

   %logout%     This will be replaced with Phorum's LogOut language string,
                so this contains the log out text that you would normally
                see for the log out link.

   %username%   This will be replaced with the username of the authenticated
                user.

By default, the lang/english.php language file defines the following string:

   %logout% (%username%)

So if user "johndoe" is logged into Phorum, he will see:

   Log Out (johndoe)


