^ :!: This Documentation Applies to CATS Version 0.6.1 :!: ^ | The CATS Team has since released new versions, the material documented here likely will not work on the new versions without modification. | ===== Bug Fixes/Mods to 0.6.1 ===== ==== Add session name ==== This patch adds the session_name to the session cookies so CATS does not interfere with other PHP applications running on the same server. Without the session_name, those other applications can step on CATS saved session information, and vice versa. Index: trunk/index.php =================================================================== --- trunk/index.php (revision 1) +++ trunk/index.php (working copy) @@ -51,6 +51,7 @@ include_once('./lib/Session.php'); /* Depends on ArrayUtility, Users, and DatabaseConnection. */ include_once('./lib/UserInterface.php'); /* Depends on Template. */ +session_name('CATS'); session_start(); /* Try to prevent caching. */ Index: trunk/lib/AJAXInterface.php =================================================================== --- trunk/lib/AJAXInterface.php (revision 1) +++ trunk/lib/AJAXInterface.php (working copy) @@ -109,6 +109,7 @@ public function __construct() { + session_name('CATS'); session_start(); /* Validate the session. */ ==== Remove Old Contact Code ==== This patch removes old client selection code from the contacts page. This code would substantially slow down the contact display on systems with large numbers of clients. Index: trunk/modules/contacts/Edit.tpl =================================================================== --- trunk/modules/contacts/Edit.tpl (revision 1) +++ trunk/modules/contacts/Edit.tpl (working copy) @@ -61,20 +61,6 @@
-
==== Fix TPL Errors ==== This patch fixes incorrect javascript file references in various templates. Index: trunk/modules/activity/Search.tpl =================================================================== --- trunk/modules/activity/Search.tpl (revision 1) +++ trunk/modules/activity/Search.tpl (working copy) @@ -1,5 +1,5 @@ - +