diff --git a/e107_languages/English/admin/help/users.php b/e107_languages/English/admin/help/users.php
index 5e3914813..a212dc8a8 100644
--- a/e107_languages/English/admin/help/users.php
+++ b/e107_languages/English/admin/help/users.php
@@ -11,15 +11,74 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/users.php,v $
-| $Revision: 1.1.1.1 $
-| $Date: 2006-12-02 04:34:43 $
-| $Author: mcfly_e107 $
+| $Revision: 1.2 $
+| $Date: 2008-01-01 13:34:05 $
+| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
-$text = "This page allows you to moderate your registered members. You can update their settings, give them administrator status and set their user class among other things.";
-$ns -> tablerender("Users Help", $text);
+$caption = "User Management";
+if (e_QUERY) list($action,$junk) = explode('.',e_QUERY); else $action = 'list';
+
+switch ($action)
+{
+ case 'create' :
+ $text = "This page allows you to create a user, who is immediately a normal member of the site, with whatever class memberships you assign.
+ If you check the 'Send confirmation email with password to new user' box, the login name and password are sent in clear, so the user must change
+ their password on receipt.
+ ";
+ break;
+
+ case 'prune' :
+ $text = "Bulk deletes unwanted users from the database. These may be either those who failed to complete the registration process, or
+ those whose email addresses bounced. Any forum posts, comments etc remain, and are flagged as from a 'Deleted User'.
+ ";
+ break;
+
+ case 'unverified' :
+ $text = "Shows those members who have failed to complete their registration. Options generally as for the complete members list.";
+ break;
+
+ case 'options' :
+ $text = "Sets various options affecting all users.
+ Allow Avatar Upload
+ If enabled, users may upload an avatar of their choice, which is stored on your server. This can have security implications.
+ Allow Photo Upload
+ If enabled, users may upload a photo of their choice, which is stored on your server. This can have security implications.
+ Online User Tracking
+ This must be enabled to keep track of most user activity, including counts of online members. It does increase database activity significantly.
+ Member Information
+ Determines which class of members can view the member list.
+ ";
+ break;
+
+ default :
+ $text = "This page shows a list of your registered members. You can update their settings, give them administrator status and set their user class
+ among other things.
+ The sort order can be changed by clicking on the column heading.
+ The displayed columns can be changed by clicking on 'Edit Display Options', selecting the required columns, then clicking on 'Search/Refresh'
+ Info
+ Show this user's profile (can also click on their display name)
+ Edit
+ Edit the settings for this user.
+ Ban/Unban
+ Determine whether the user can access the site.
+ Activate
+ This activates a user who would normally have replied to the activation email.
+ Resend Email
+ Resends the activation email to the user.
+ Test email
+ Check user's email address for validity (doesn't send an email)
+ Set Class
+ Set class membership for a user
+ Delete
+ Totally removes the user from membership of the site (any forum posts, comments etc remain, and are flagged as from a 'Deleted User')
+ ";
+}
+
+
+$ns -> tablerender($caption, $text);
unset($text);
?>
\ No newline at end of file