[phplib-dev] cvs commit
by chrisj other posts by this author
Jul 9 2001 3:34PM messages near this date
Re: [phplib-dev] guidelines for phplib-based packages design/integration?
|
[phplib-dev] cvs commit
From: chrisj
Date: Mon Jul 9 17:34:00 2001
Modified files:
php-lib-stable/php/session.inc
Log message:
Set default setting of "allowcache" to "no" as this is a continuing source
of confusion and problems for first-time PHPLIB users.
Index: php-lib-stable/php/session.inc
diff -u php-lib-stable/php/session.inc:1.6 php-lib-stable/php/session.inc:1.7
--- php-lib-stable/php/session.inc:1.6 Tue Mar 27 12:15:27 2001
+++ php-lib-stable/php/session.inc Mon Jul 9 17:33:29 2001
@@ -5,7 +5,7 @@
* Copyright (c) 1998-2000 NetUSE AG
* Boris Erdmann, Kristian Koehntopp
*
- * $Id: session.inc,v 1.6 2001/03/27 10:15:27 kosch Exp $
+ * $Id: session.inc,v 1.7 2001/07/09 15:33:29 chrisj Exp $
*
*/
@@ -30,7 +30,7 @@
var $secure_auto_init = 1; ## Set to 0 only, if all pages call
## page_close() guaranteed.
- var $allowcache = "passive"; ## "passive", "no", "private", "public"
+ var $allowcache = "no"; ## "passive", "no", "private", "public"
var $allowcache_expire = 1440; ## If you allowcache, data expires in this
## many minutes.
var $that_class = ""; ## Name of data storage container
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-dev-unsubscribe@[...].de
For additional commands, e-mail: phplib-dev-help@lists.netuse.de
|