Index: trunk/admin/install/upgrades/readme_1_1_1.txt =================================================================== diff -u -r2199 -r2251 --- trunk/admin/install/upgrades/readme_1_1_1.txt (.../readme_1_1_1.txt) (revision 2199) +++ trunk/admin/install/upgrades/readme_1_1_1.txt (.../readme_1_1_1.txt) (revision 2251) @@ -1,3 +1,20 @@ +Readme notes for In-portal Platform 1.1.1 +Intechnic Corporation, September 8, 2005 + +New Features: +Added "Everyone" usergroup - the new usergroup may be used for managing permission where something need to be set for any user of in-portal including both guests and registered members + +Group membership expiration - allows to setup time-based group membership. If In-commerce is installed this also allows selling group membership for given duration. + + +Bug fixes: + +Fixed editing empty groups (with no users assigned) - Users tab +Fixed suggest site to a friend functionality +Fixed incorrect parser behavior when processing actions such as logout or search from in-commerce section of default theme + + + 0006247 - Added php upgrade script creation posibility 0006247 - Added group "Everyone". Every logged-in user is placed there too 0006646 - Removed dynamic data from configs Index: trunk/kernel/admin/include/help/edituser_groups.txt =================================================================== diff -u -r49 -r2251 --- trunk/kernel/admin/include/help/edituser_groups.txt (.../edituser_groups.txt) (revision 49) +++ trunk/kernel/admin/include/help/edituser_groups.txt (.../edituser_groups.txt) (revision 2251) @@ -1,2 +1,3 @@ -This tab allows the administrator to assign the user to one or more groups. It also lists all groups to which the user is currently assigned, along with the user count in each group. - To assign a new group, click on the �Add User to Group' button (user icon with a green arrow to the right). This button will pop-up a group selector. \ No newline at end of file +This tab allows the administrator to assign the user to one or more groups. It also lists all groups to which the user is currently assigned, along with the group membership expiration date (if any) and the user count in each group. Double clicking on the group brings the edit form where the administrator can edit the membership expiration date. If expiration date is left blank, the membership will never expire.
+
+To assign a new group, click on the �Add User to Group� button (user icon with a green arrow to the right). This button will pop-up a group selector. Index: trunk/admin/import/step4.php =================================================================== diff -u -r2120 -r2251 --- trunk/admin/import/step4.php (.../step4.php) (revision 2120) +++ trunk/admin/import/step4.php (.../step4.php) (revision 2251) @@ -104,7 +104,7 @@ $db_pass = $objSession->GetVariable("import_pass"); // check supplied connection - $linkconn = ADONewConnection($db_sql_type); + $linkconn =& ADONewConnection($db_sql_type); if( !$linkconn->NConnect($db_server, $db_user, $db_pass, $db_db) || !$db_server || !$db_db ) { $objSession->SetVariable("error_importing","Error: The connection to the DB failed please check your settings");