CVS update: /cowiki/includes/cowiki/

[email protected] 21 Apr 2005 00:08:03 -0000
Newsgroups gmane.comp.php.cowiki.cvs
Message-ID <[email protected]>
User: dgorski 
Date: 2005/04/20 17:08:03

Modified:
   cowiki/includes/cowiki/core.base.php

Log:
 Change session name (the session key) from "cowiki" to "sid". This a) more common and b) won't interfere with the installer
 This has basicaly no impact on the functionality of the software

File Changes:

Directory: /cowiki/includes/cowiki/
===================================

File [changed]: core.base.php
Url: http://cowiki.tigris.org/source/browse/cowiki/includes/cowiki/core.base.php?r1=1.62&r2=1.63
Delta lines:  +3 -3
-------------------
--- core.base.php	19 Mar 2005 22:03:51 -0000	1.62
+++ core.base.php	21 Apr 2005 00:08:01 -0000	1.63
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: core.base.php,v 1.62 2005/03/19 22:03:51 dgorski Exp $
+ * $Id: core.base.php,v 1.63 2005/04/21 00:08:01 dgorski Exp $
  *
  * This file is part of coWiki. coWiki is free software under the terms of
  * the GNU General Public License (GPL). Read the LICENSE file. If you did
@@ -16,7 +16,7 @@
  * @author     Daniel T. Gorski, <[email protected]>
  * @copyright  (C) Daniel T. Gorski, {@link http://www.develnet.org}
  * @license    http://www.gnu.org/licenses/gpl.html
- * @version    $Revision: 1.62 $
+ * @version    $Revision: 1.63 $
  *
  */
 
@@ -95,7 +95,7 @@
 
     // Session settings and lift off
     ini_set('arg_separator.output', '&amp;');
-    session_name('cowiki');
+    session_name('sid');
     @session_start();
 
     $Context  = RuntimeContext::getInstance();