summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BaseAuth.php2
-rw-r--r--BitPermUser.php6
-rw-r--r--BitUser.php6
-rw-r--r--admin/admin_login_inc.php2
-rw-r--r--admin/admin_userfiles_inc.php2
-rw-r--r--admin/assign_user.php2
-rw-r--r--admin/edit_group.php2
-rw-r--r--admin/index.php2
-rw-r--r--admin/upgrades/2.1.0.php2
-rw-r--r--admin/upgrades/2.1.1.php2
-rw-r--r--admin/upgrades/2.1.2.php2
-rw-r--r--admin/users_import.php2
-rw-r--r--admin/verify_emails.php2
-rw-r--r--assigned_modules.php4
-rw-r--r--auth/bit/auth.php2
-rw-r--r--auth/imap/auth.php2
-rw-r--r--auth/ldap/auth.php2
-rw-r--r--auth/locate/auth.php2
-rw-r--r--auth/multisites/auth.php2
-rw-r--r--bit_setup_inc.php2
-rw-r--r--captcha_image.php4
-rw-r--r--change_password.php4
-rw-r--r--confirm.php4
-rw-r--r--custom_home.php4
-rw-r--r--display_bituser_inc.php4
-rw-r--r--edit_personal_page.php4
-rw-r--r--index.php4
-rw-r--r--[-rwxr-xr-x]liberty_plugins/data.userlink.php4
-rw-r--r--login.php4
-rw-r--r--logout.php4
-rw-r--r--lookup_user_inc.php2
-rw-r--r--module_controls_inc.php4
-rw-r--r--modules/mod_login_box.tpl2
-rw-r--r--modules/mod_online_users.php4
-rw-r--r--modules/mod_online_users.tpl2
-rw-r--r--modules/mod_since_last_visit.php4
-rw-r--r--modules/mod_since_last_visit.tpl2
-rw-r--r--modules/mod_user_pages.php2
-rw-r--r--modules/mod_user_pages.tpl2
-rw-r--r--modules/mod_user_profile.php4
-rw-r--r--modules/mod_who_is_there.php4
-rw-r--r--modules/mod_who_is_there.tpl2
-rw-r--r--modules/user_module.tpl2
-rw-r--r--my.php4
-rw-r--r--my_groups.php4
-rw-r--r--my_images.php4
-rw-r--r--preferences.php4
-rw-r--r--register.php4
-rw-r--r--remind_password.php4
-rw-r--r--show_user_avatar.php4
-rw-r--r--templates/admin_assign_user.tpl2
-rw-r--r--templates/admin_group_edit.tpl2
-rw-r--r--templates/edit_personal_page.tpl2
-rw-r--r--templates/login.tpl2
-rw-r--r--templates/my_bitweaver.tpl2
-rw-r--r--templates/my_group_edit.tpl2
-rw-r--r--templates/user_information_inc.tpl2
-rw-r--r--templates/users_admin.tpl2
-rw-r--r--templates/users_import.tpl2
-rw-r--r--theme.php4
-rw-r--r--users_lib.php2
-rw-r--r--users_rss.php2
-rw-r--r--validate.php4
-rw-r--r--watches.php4
64 files changed, 94 insertions, 94 deletions
diff --git a/BaseAuth.php b/BaseAuth.php
index 1cef927..0f49444 100644
--- a/BaseAuth.php
+++ b/BaseAuth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/BaseAuth.php,v 1.10 2006/10/13 12:47:40 lsces Exp $
+ * $Header$
*
* @package users
*/
diff --git a/BitPermUser.php b/BitPermUser.php
index c1d632d..ebac164 100644
--- a/BitPermUser.php
+++ b/BitPermUser.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/BitPermUser.php,v 1.90 2010/04/24 19:03:37 wjames5 Exp $
+ * $Header$
*
* Lib for user administration, groups and permissions
* This lib uses pear so the constructor requieres
@@ -11,7 +11,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: BitPermUser.php,v 1.90 2010/04/24 19:03:37 wjames5 Exp $
+ * $Id$
* @package users
*/
@@ -24,7 +24,7 @@ require_once( USERS_PKG_PATH.'/BitUser.php' );
* Class that holds all information for a given user
*
* @author spider <spider@steelsun.com>
- * @version $Revision: 1.90 $
+ * @version $Revision$
* @package users
* @subpackage BitPermUser
*/
diff --git a/BitUser.php b/BitUser.php
index b551c0a..a822f0e 100644
--- a/BitUser.php
+++ b/BitUser.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/BitUser.php,v 1.271 2010/04/29 10:57:11 lsces Exp $
+ * $Header$
*
* Lib for user administration, groups and permissions
* This lib uses pear so the constructor requieres
@@ -12,7 +12,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: BitUser.php,v 1.271 2010/04/29 10:57:11 lsces Exp $
+ * $Id$
* @package users
*/
@@ -42,7 +42,7 @@ define( "ACCOUNT_DISABLED", -6 );
* Class that holds all information for a given user
*
* @author spider <spider@steelsun.com>
- * @version $Revision: 1.271 $
+ * @version $Revision$
* @package users
* @subpackage BitUser
*/
diff --git a/admin/admin_login_inc.php b/admin/admin_login_inc.php
index 933c67d..2eb83a3 100644
--- a/admin/admin_login_inc.php
+++ b/admin/admin_login_inc.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/admin_login_inc.php,v 1.36 2010/04/16 19:40:38 spiderr Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/admin_userfiles_inc.php b/admin/admin_userfiles_inc.php
index 86ab36b..7b0c7ae 100644
--- a/admin/admin_userfiles_inc.php
+++ b/admin/admin_userfiles_inc.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/admin_userfiles_inc.php,v 1.7 2009/10/01 14:17:06 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/assign_user.php b/admin/assign_user.php
index db85a82..577de87 100644
--- a/admin/assign_user.php
+++ b/admin/assign_user.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/assign_user.php,v 1.15 2010/02/08 21:27:26 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/edit_group.php b/admin/edit_group.php
index f23bf4c..6aac0fd 100644
--- a/admin/edit_group.php
+++ b/admin/edit_group.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/edit_group.php,v 1.43 2010/04/17 15:36:08 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/index.php b/admin/index.php
index e9378ad..30f542f 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/index.php,v 1.38 2010/04/30 18:14:50 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/upgrades/2.1.0.php b/admin/upgrades/2.1.0.php
index a90b79c..34ce4ec 100644
--- a/admin/upgrades/2.1.0.php
+++ b/admin/upgrades/2.1.0.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/admin/upgrades/2.1.0.php,v 1.3 2008/10/30 22:02:20 squareing Exp $
+ * @version $Header$
*/
global $gBitInstaller;
diff --git a/admin/upgrades/2.1.1.php b/admin/upgrades/2.1.1.php
index 742af07..32c5883 100644
--- a/admin/upgrades/2.1.1.php
+++ b/admin/upgrades/2.1.1.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/admin/upgrades/2.1.1.php,v 1.3 2009/03/31 16:05:43 dansut Exp $
+ * @version $Header$
*/
global $gBitInstaller;
diff --git a/admin/upgrades/2.1.2.php b/admin/upgrades/2.1.2.php
index 74f1790..38ba3cb 100644
--- a/admin/upgrades/2.1.2.php
+++ b/admin/upgrades/2.1.2.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/admin/upgrades/2.1.2.php,v 1.1 2010/04/13 13:51:05 spiderr Exp $
+ * @version $Header$
*/
global $gBitInstaller;
diff --git a/admin/users_import.php b/admin/users_import.php
index 1ab9998..4f7cc88 100644
--- a/admin/users_import.php
+++ b/admin/users_import.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/users_import.php,v 1.7 2010/02/08 21:27:26 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/admin/verify_emails.php b/admin/verify_emails.php
index d966860..488ccd3 100644
--- a/admin/verify_emails.php
+++ b/admin/verify_emails.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/admin/verify_emails.php,v 1.9 2010/02/08 21:27:26 wjames5 Exp $
+// $Header$
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See below for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
diff --git a/assigned_modules.php b/assigned_modules.php
index 5e46ad9..63ed058 100644
--- a/assigned_modules.php
+++ b/assigned_modules.php
@@ -3,13 +3,13 @@
* assigned_modules
*
* @author spider <spider@steelsun.com>
- * @version $Revision: 1.17 $
+ * @version $Revision$
* @package users
* @subpackage functions
* @copyright Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* @license Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
*/
-// $Header: /cvsroot/bitweaver/_bit_users/assigned_modules.php,v 1.17 2010/02/08 21:27:26 wjames5 Exp $
+// $Header$
// All Rights Reserved. See below for details and a complete list of authors.
// Initialization
diff --git a/auth/bit/auth.php b/auth/bit/auth.php
index 33409eb..1fe5cb2 100644
--- a/auth/bit/auth.php
+++ b/auth/bit/auth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/auth/bit/auth.php,v 1.7 2008/10/16 09:57:58 squareing Exp $
+ * $Header$
*
* @package users
*/
diff --git a/auth/imap/auth.php b/auth/imap/auth.php
index 4b40474..59ece04 100644
--- a/auth/imap/auth.php
+++ b/auth/imap/auth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/auth/imap/auth.php,v 1.2 2006/10/13 12:47:40 lsces Exp $
+ * $Header$
*
* @package users
*/
diff --git a/auth/ldap/auth.php b/auth/ldap/auth.php
index abf4aed..5eea99f 100644
--- a/auth/ldap/auth.php
+++ b/auth/ldap/auth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/auth/ldap/auth.php,v 1.14 2009/07/16 08:13:39 lsces Exp $
+ * $Header$
*
* @package users
*/
diff --git a/auth/locate/auth.php b/auth/locate/auth.php
index e574ba0..ebb46f5 100644
--- a/auth/locate/auth.php
+++ b/auth/locate/auth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/auth/locate/auth.php,v 1.1 2008/11/28 08:03:20 lsces Exp $
+ * $Header$
*
* @package users
*/
diff --git a/auth/multisites/auth.php b/auth/multisites/auth.php
index ab50b64..ef9de3c 100644
--- a/auth/multisites/auth.php
+++ b/auth/multisites/auth.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/auth/multisites/auth.php,v 1.4 2008/10/16 10:02:56 squareing Exp $
+ * $Header$
*
* @package users
*/
diff --git a/bit_setup_inc.php b/bit_setup_inc.php
index 84209ae..6d105ce 100644
--- a/bit_setup_inc.php
+++ b/bit_setup_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/bit_setup_inc.php,v 1.54 2010/03/13 20:09:00 wjames5 Exp $
+ * @version $Header$
* @package users
*/
global $gBitDbType, $gBitDbHost, $gBitDbUser, $gBitDbPassword, $gBitDbName, $gBitThemes;
diff --git a/captcha_image.php b/captcha_image.php
index 1f953d3..badb637 100644
--- a/captcha_image.php
+++ b/captcha_image.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/captcha_image.php,v 1.7 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: captcha_image.php,v 1.7 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/change_password.php b/change_password.php
index d12015c..bdd9e48 100644
--- a/change_password.php
+++ b/change_password.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/change_password.php,v 1.17 2010/02/08 23:25:30 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: change_password.php,v 1.17 2010/02/08 23:25:30 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/confirm.php b/confirm.php
index 179a3d0..c8eaaff 100644
--- a/confirm.php
+++ b/confirm.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/confirm.php,v 1.12 2010/05/10 21:08:24 ukgrad89 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: confirm.php,v 1.12 2010/05/10 21:08:24 ukgrad89 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/custom_home.php b/custom_home.php
index 15ac535..7465b2b 100644
--- a/custom_home.php
+++ b/custom_home.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/custom_home.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: custom_home.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/display_bituser_inc.php b/display_bituser_inc.php
index a8b61ee..cc59cb9 100644
--- a/display_bituser_inc.php
+++ b/display_bituser_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/display_bituser_inc.php,v 1.5 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: display_bituser_inc.php,v 1.5 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/edit_personal_page.php b/edit_personal_page.php
index e0fe186..9cb166e 100644
--- a/edit_personal_page.php
+++ b/edit_personal_page.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/edit_personal_page.php,v 1.28 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: edit_personal_page.php,v 1.28 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/index.php b/index.php
index e8c7059..3637fad 100644
--- a/index.php
+++ b/index.php
@@ -1,8 +1,8 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/index.php,v 1.43 2010/02/08 23:25:30 wjames5 Exp $
+ * $Header$
*
- * $Id: index.php,v 1.43 2010/02/08 23:25:30 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/liberty_plugins/data.userlink.php b/liberty_plugins/data.userlink.php
index a456b9b..37ba859 100755..100644
--- a/liberty_plugins/data.userlink.php
+++ b/liberty_plugins/data.userlink.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Revision: 1.5 $
+ * @version $Revision$
* @package liberty
* @subpackage plugins_data
* @author bigwasp bigwasp@sourceforge.net
@@ -19,7 +19,7 @@
// | by: StarRider <starrrider@sourceforge.net>
// | Reworked from: wikiplugin_usercount.php - see deprecated code below
// +----------------------------------------------------------------------+
-// $Id: data.userlink.php,v 1.5 2009/10/01 14:17:06 wjames5 Exp $
+// $Id$
/**
* definitions
diff --git a/login.php b/login.php
index f990e74..06bcec9 100644
--- a/login.php
+++ b/login.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/login.php,v 1.16 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: login.php,v 1.16 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/logout.php b/logout.php
index 4b8bc3a..094a432 100644
--- a/logout.php
+++ b/logout.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/logout.php,v 1.5 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: logout.php,v 1.5 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/lookup_user_inc.php b/lookup_user_inc.php
index 8a9dd89..1347163 100644
--- a/lookup_user_inc.php
+++ b/lookup_user_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/lookup_user_inc.php,v 1.15 2009/08/07 20:23:44 spiderr Exp $
+ * $Header$
*
* @package users
* @subpackage functions
diff --git a/module_controls_inc.php b/module_controls_inc.php
index bb4dbc5..9645fe1 100644
--- a/module_controls_inc.php
+++ b/module_controls_inc.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/module_controls_inc.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * @version $Header$
* @package users
* @subpackage functions
*
@@ -10,7 +10,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: module_controls_inc.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
*/
/**
diff --git a/modules/mod_login_box.tpl b/modules/mod_login_box.tpl
index 5654b20..e74fa5c 100644
--- a/modules/mod_login_box.tpl
+++ b/modules/mod_login_box.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_login_box.tpl,v 1.16 2008/08/30 10:08:36 laetzer Exp $ *}
+{* $Header$ *}
{strip}
{bitmodule title="$moduleTitle" name="login_box"}
{if $gBitUser->IsRegistered()}
diff --git a/modules/mod_online_users.php b/modules/mod_online_users.php
index d6248ac..b810a42 100644
--- a/modules/mod_online_users.php
+++ b/modules/mod_online_users.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/modules/mod_online_users.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: mod_online_users.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage modules
*/
diff --git a/modules/mod_online_users.tpl b/modules/mod_online_users.tpl
index c83158c..7e40f5d 100644
--- a/modules/mod_online_users.tpl
+++ b/modules/mod_online_users.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_online_users.tpl,v 1.5 2007/01/07 22:22:18 squareing Exp $ *}
+{* $Header$ *}
{strip}
{bitmodule title="$moduleTitle" name="online_users"}
{tr}We have {$logged_users} online user(s){/tr}
diff --git a/modules/mod_since_last_visit.php b/modules/mod_since_last_visit.php
index e6da185..9015369 100644
--- a/modules/mod_since_last_visit.php
+++ b/modules/mod_since_last_visit.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/modules/mod_since_last_visit.php,v 1.6 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: mod_since_last_visit.php,v 1.6 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage modules
*/
diff --git a/modules/mod_since_last_visit.tpl b/modules/mod_since_last_visit.tpl
index ca921bf..46b07c9 100644
--- a/modules/mod_since_last_visit.tpl
+++ b/modules/mod_since_last_visit.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_since_last_visit.tpl,v 1.2 2005/08/24 20:59:13 squareing Exp $ *}
+{* $Header$ *}
{if $gBitUser->isRegistered()}
{bitmodule title="$moduleTitle" name="since_last_visit"}
{tr}Since your last visit on{/tr}<br />
diff --git a/modules/mod_user_pages.php b/modules/mod_user_pages.php
index ca32976..6fcdcff 100644
--- a/modules/mod_user_pages.php
+++ b/modules/mod_user_pages.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_users/modules/mod_user_pages.php,v 1.7 2010/04/17 19:45:49 wjames5 Exp $
+// $Header$
/**
* Params:
* - content_type_guid : if set, show only those content_type_guid's
diff --git a/modules/mod_user_pages.tpl b/modules/mod_user_pages.tpl
index 25c029b..158549c 100644
--- a/modules/mod_user_pages.tpl
+++ b/modules/mod_user_pages.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_user_pages.tpl,v 1.5 2010/04/17 19:45:49 wjames5 Exp $ *}
+{* $Header$ *}
{strip}
{if $modLastPages}
{bitmodule title="$moduleTitle" name="last_changes"}
diff --git a/modules/mod_user_profile.php b/modules/mod_user_profile.php
index a196f73..9f2cf8f 100644
--- a/modules/mod_user_profile.php
+++ b/modules/mod_user_profile.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/modules/mod_user_profile.php,v 1.12 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: mod_user_profile.php,v 1.12 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage modules
*/
diff --git a/modules/mod_who_is_there.php b/modules/mod_who_is_there.php
index f8bf2be..59a4629 100644
--- a/modules/mod_who_is_there.php
+++ b/modules/mod_who_is_there.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/modules/mod_who_is_there.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: mod_who_is_there.php,v 1.9 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage modules
*/
diff --git a/modules/mod_who_is_there.tpl b/modules/mod_who_is_there.tpl
index febbe7c..561ddfc 100644
--- a/modules/mod_who_is_there.tpl
+++ b/modules/mod_who_is_there.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/mod_who_is_there.tpl,v 1.9 2007/10/26 13:26:51 nickpalmer Exp $ *}
+{* $Header$ *}
{bitmodule title="$moduleTitle" name="who_is_there"}
<div>
{if $logged_users eq 0}
diff --git a/modules/user_module.tpl b/modules/user_module.tpl
index 2d82533..c9d4ce0 100644
--- a/modules/user_module.tpl
+++ b/modules/user_module.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/modules/user_module.tpl,v 1.1 2005/06/19 05:12:23 bitweaver Exp $ *}
+{* $Header$ *}
{bitmodule title=$user_title name=$user_module_name}
{eval var=$user_data}
{/bitmodule} \ No newline at end of file
diff --git a/my.php b/my.php
index 976bf35..ba04f5f 100644
--- a/my.php
+++ b/my.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/my.php,v 1.22 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: my.php,v 1.22 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/my_groups.php b/my_groups.php
index 0f88207..651b42b 100644
--- a/my_groups.php
+++ b/my_groups.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/my_groups.php,v 1.22 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: my_groups.php,v 1.22 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/my_images.php b/my_images.php
index ee13c61..f347cfa 100644
--- a/my_images.php
+++ b/my_images.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/my_images.php,v 1.17 2010/03/23 16:04:00 dansut Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: my_images.php,v 1.17 2010/03/23 16:04:00 dansut Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/preferences.php b/preferences.php
index b74fc6a..8bcc067 100644
--- a/preferences.php
+++ b/preferences.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/preferences.php,v 1.69 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: preferences.php,v 1.69 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/register.php b/register.php
index bd973ba..93e9ab2 100644
--- a/register.php
+++ b/register.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/register.php,v 1.46 2010/03/10 22:26:52 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: register.php,v 1.46 2010/03/10 22:26:52 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/remind_password.php b/remind_password.php
index 0a6d56b..c849a34 100644
--- a/remind_password.php
+++ b/remind_password.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/remind_password.php,v 1.27 2010/02/12 22:21:15 dansut Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: remind_password.php,v 1.27 2010/02/12 22:21:15 dansut Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/show_user_avatar.php b/show_user_avatar.php
index 17d4e54..2fe0796 100644
--- a/show_user_avatar.php
+++ b/show_user_avatar.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/show_user_avatar.php,v 1.4 2009/10/01 14:17:06 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: show_user_avatar.php,v 1.4 2009/10/01 14:17:06 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/templates/admin_assign_user.tpl b/templates/admin_assign_user.tpl
index 87e2579..c67090e 100644
--- a/templates/admin_assign_user.tpl
+++ b/templates/admin_assign_user.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/admin_assign_user.tpl,v 1.5 2008/11/17 23:22:13 laetzer Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">{bithelp}</div>
<div class="floaticon"><a href="{$smarty.const.USERS_PKG_URL}admin/index.php">{biticon ipackage="icons" iname="go-previous" iexplain="back to users"}</a></div>
diff --git a/templates/admin_group_edit.tpl b/templates/admin_group_edit.tpl
index 49f41e0..9fa8672 100644
--- a/templates/admin_group_edit.tpl
+++ b/templates/admin_group_edit.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/admin_group_edit.tpl,v 1.23 2009/06/30 19:05:33 spiderr Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">
diff --git a/templates/edit_personal_page.tpl b/templates/edit_personal_page.tpl
index 7928c35..70c1903 100644
--- a/templates/edit_personal_page.tpl
+++ b/templates/edit_personal_page.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/edit_personal_page.tpl,v 1.6 2010/04/17 04:28:31 wjames5 Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">{bithelp}</div>
diff --git a/templates/login.tpl b/templates/login.tpl
index cd76b8b..3bf1e1b 100644
--- a/templates/login.tpl
+++ b/templates/login.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/login.tpl,v 1.6 2006/04/19 17:11:19 spiderr Exp $ *}
+{* $Header$ *}
{strip}
<div class="display login">
diff --git a/templates/my_bitweaver.tpl b/templates/my_bitweaver.tpl
index 59d31f2..c08a148 100644
--- a/templates/my_bitweaver.tpl
+++ b/templates/my_bitweaver.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/my_bitweaver.tpl,v 1.11 2007/06/13 15:02:39 squareing Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">{bithelp}</div>
diff --git a/templates/my_group_edit.tpl b/templates/my_group_edit.tpl
index fd86cb9..182c46d 100644
--- a/templates/my_group_edit.tpl
+++ b/templates/my_group_edit.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/my_group_edit.tpl,v 1.8 2008/10/18 09:23:54 squareing Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">
<a href="{$smarty.const.USERS_PKG_URL}my_groups.php">{tr}&laquo; Group List{/tr}</a>
diff --git a/templates/user_information_inc.tpl b/templates/user_information_inc.tpl
index 3bad1b1..76050fd 100644
--- a/templates/user_information_inc.tpl
+++ b/templates/user_information_inc.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/user_information_inc.tpl,v 1.18 2009/06/30 19:05:33 spiderr Exp $ *}
+{* $Header$ *}
{strip}
{if $userData->getPreference('users_information') eq 'public' or $gBitUser->mUserId eq $userData->mUserId}
<div class="row">
diff --git a/templates/users_admin.tpl b/templates/users_admin.tpl
index a9d59d8..07e8b3b 100644
--- a/templates/users_admin.tpl
+++ b/templates/users_admin.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/users_admin.tpl,v 1.12 2010/02/10 19:33:07 spiderr Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">{bithelp}</div>
diff --git a/templates/users_import.tpl b/templates/users_import.tpl
index 9eee28b..1273c9a 100644
--- a/templates/users_import.tpl
+++ b/templates/users_import.tpl
@@ -1,4 +1,4 @@
-{* $Header: /cvsroot/bitweaver/_bit_users/templates/users_import.tpl,v 1.1 2007/11/15 19:27:18 joasch Exp $ *}
+{* $Header$ *}
{strip}
<div class="floaticon">{bithelp}</div>
diff --git a/theme.php b/theme.php
index f178175..c4c8df2 100644
--- a/theme.php
+++ b/theme.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/theme.php,v 1.12 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: theme.php,v 1.12 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/users_lib.php b/users_lib.php
index a68b38d..afefa41 100644
--- a/users_lib.php
+++ b/users_lib.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/users_lib.php,v 1.5 2009/10/02 19:44:51 wjames5 Exp $
+ * @version $Header$
* @package users
* @subpackage functions
*/
diff --git a/users_rss.php b/users_rss.php
index f2e2044..c9d092e 100644
--- a/users_rss.php
+++ b/users_rss.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_users/users_rss.php,v 1.7 2010/02/08 21:27:26 wjames5 Exp $
+ * @version $Header$
* @package users
* @subpackage functions
*/
diff --git a/validate.php b/validate.php
index 522857a..4cb4cfb 100644
--- a/validate.php
+++ b/validate.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/validate.php,v 1.27 2010/04/16 19:40:50 spiderr Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: validate.php,v 1.27 2010/04/16 19:40:50 spiderr Exp $
+ * $Id$
* @package users
* @subpackage functions
*/
diff --git a/watches.php b/watches.php
index 137e3e4..9a7e362 100644
--- a/watches.php
+++ b/watches.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/watches.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header$
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: watches.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id$
* @package users
* @subpackage functions
*/