Index: trunk/core/kernel/db/db_tag_processor.php =================================================================== diff -u -r1795 -r2261 --- trunk/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 1795) +++ trunk/core/kernel/db/db_tag_processor.php (.../db_tag_processor.php) (revision 2261) @@ -5,7 +5,7 @@ /** * Description * - * @var DBConnection + * @var kDBConnection * @access public */ var $Conn; Fisheye: Tag 2261 refers to a dead (removed) revision in file `trunk/core/kernel/utility/iterator.php'. Fisheye: No comparison available. Pass `N' to diff? Index: trunk/admin/install/upgrades/inportal_upgrade_v1.1.1.sql =================================================================== diff -u -r2234 -r2261 --- trunk/admin/install/upgrades/inportal_upgrade_v1.1.1.sql (.../inportal_upgrade_v1.1.1.sql) (revision 2234) +++ trunk/admin/install/upgrades/inportal_upgrade_v1.1.1.sql (.../inportal_upgrade_v1.1.1.sql) (revision 2261) @@ -32,5 +32,6 @@ INSERT INTO Events VALUES ('', 'USER.MEMBERSHIP_EXPIRATION_NOTICE', '1', '0', 'In-Portal:Users', 'la_event_user.membership_expiration_notice', '1'); ALTER TABLE UserGroup ADD MembershipExpires INT UNSIGNED DEFAULT NULL AFTER GroupId; +ALTER TABLE PersistantSessionData ADD PRIMARY KEY (PortalUserId, VariableName); UPDATE Modules SET Version = '1.1.1' WHERE Name = 'In-Portal'; \ No newline at end of file Index: trunk/core/kernel/utility/temp_handler.php =================================================================== diff -u -r1560 -r2261 --- trunk/core/kernel/utility/temp_handler.php (.../temp_handler.php) (revision 1560) +++ trunk/core/kernel/utility/temp_handler.php (.../temp_handler.php) (revision 2261) @@ -24,7 +24,7 @@ /** * Description * - * @var DBConnection + * @var kDBConnection * @access public */ var $Conn; Fisheye: Tag 2261 refers to a dead (removed) revision in file `trunk/core/kernel/utility/configuration.php'. Fisheye: No comparison available. Pass `N' to diff? Index: trunk/admin/install/inportal_schema.sql =================================================================== diff -u -r2184 -r2261 --- trunk/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 2184) +++ trunk/admin/install/inportal_schema.sql (.../inportal_schema.sql) (revision 2261) @@ -331,10 +331,10 @@ PortalUserId int(11) NOT NULL default '0', VariableName varchar(255) NOT NULL default '', VariableValue text NOT NULL, + PRIMARY KEY (PortalUserId,VariableName), KEY UserId (PortalUserId), KEY VariableName (VariableName) ) - # -------------------------------------------------------- CREATE TABLE Phrase ( Index: trunk/core/kernel/db/db_event_handler.php =================================================================== diff -u -r2117 -r2261 --- trunk/core/kernel/db/db_event_handler.php (.../db_event_handler.php) (revision 2117) +++ trunk/core/kernel/db/db_event_handler.php (.../db_event_handler.php) (revision 2261) @@ -33,7 +33,7 @@ /** * Description * - * @var DBConnection + * @var kDBConnection * @access public */ var $Conn; Fisheye: Tag 2261 refers to a dead (removed) revision in file `trunk/core/kernel/utility/utilities.php'. Fisheye: No comparison available. Pass `N' to diff? Index: trunk/core/kernel/languages/phrases_cache.php =================================================================== diff -u -r2232 -r2261 --- trunk/core/kernel/languages/phrases_cache.php (.../phrases_cache.php) (revision 2232) +++ trunk/core/kernel/languages/phrases_cache.php (.../phrases_cache.php) (revision 2261) @@ -5,7 +5,7 @@ /** * Connection to database * - * @var DBConnection + * @var kDBConnection * @access public */ var $Conn; Index: trunk/core/kernel/kbase.php =================================================================== diff -u -r2232 -r2261 --- trunk/core/kernel/kbase.php (.../kbase.php) (revision 2232) +++ trunk/core/kernel/kbase.php (.../kbase.php) (revision 2261) @@ -96,7 +96,7 @@ /** * Connection to database * - * @var DBConnection + * @var kDBConnection * @access public */ var $Conn;