From: Lo?c C. <lo...@us...> - 2001-04-03 20:10:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/config In directory usw-pr-cvs1:/tmp/cvs-serv3216/chat/config Modified Files: config.lib.php3 Log Message: The first dev. version that works! Still many things to do, of course... Index: config.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/config.lib.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** config.lib.php3 2001/03/29 22:52:17 1.1 --- config.lib.php3 2001/04/03 20:10:15 1.2 *************** *** 43,48 **** define('C_MSG_DEL', 96); // Messages are deleted when there are 'xx' hours old define('C_USR_DEL', 4); // Usernames are deleted when its last use is 'xx' minutes old ! // the second setting must be greater than the maximum time // authorized between messages list refresh define('C_REG_DEL', 0); // Registered profiles are deleted when its last use is 'xx' days old // 'xx' should be 0 for never --- 43,50 ---- define('C_MSG_DEL', 96); // Messages are deleted when there are 'xx' hours old define('C_USR_DEL', 4); // Usernames are deleted when its last use is 'xx' minutes old ! // This setting must be greater than the maximum time // authorized between messages list refresh + define('C_SESS_DEL', 8); // Sessions are deleted when its last use is 'xx' minutes old + // This setting must be greater than the 'C_USR_DEL' one define('C_REG_DEL', 0); // Registered profiles are deleted when its last use is 'xx' days old // 'xx' should be 0 for never *************** *** 108,112 **** // Name and version of this application define('APP_NAME', 'phpMyChat'); // Application name ! define('APP_VERSION', '0.15.0 - dev'); // Application version number // Complete Url of the chat --- 110,114 ---- // Name and version of this application define('APP_NAME', 'phpMyChat'); // Application name ! define('APP_VERSION', '0.15.0 - dev1'); // Application version number // Complete Url of the chat |