[xoops-cvslog 4004] CVS update: xoops2jp/html/include

Back to archive index

onokazu onoka****@users*****
2006年 8月 6日 (日) 22:07:08 JST


Index: xoops2jp/html/include/session.php
diff -u xoops2jp/html/include/session.php:1.2 xoops2jp/html/include/session.php:1.3
--- xoops2jp/html/include/session.php:1.2	Tue Aug  1 11:55:25 2006
+++ xoops2jp/html/include/session.php	Sun Aug  6 22:07:08 2006
@@ -31,6 +31,9 @@
     $sess_handler =& xoops_gethandler('session');
     session_set_save_handler(array(&$sess_handler, 'open'), array(&$sess_handler, 'close'), array(&$sess_handler, 'read'), array(&$sess_handler, 'write'), array(&$sess_handler, 'destroy'), array(&$sess_handler, 'gc'));
     session_start();
-    $_SESSION = $old_session;
+    $_SESSION = array();
+    foreach (array_keys($old_session) as $key) {
+        $_SESSION[$key] = $old_session[$key];
+    }
 }
 ?>
\ No newline at end of file
Index: xoops2jp/html/include/version.php
diff -u xoops2jp/html/include/version.php:1.15 xoops2jp/html/include/version.php:1.16
--- xoops2jp/html/include/version.php:1.15	Tue Aug  1 11:55:25 2006
+++ xoops2jp/html/include/version.php	Sun Aug  6 22:07:08 2006
@@ -1,4 +1,4 @@
 <?php
-// $Id: version.php,v 1.15 2006/08/01 02:55:25 onokazu Exp $
-define("XOOPS_VERSION","XOOPS 2.0.16 JP");
+// $Id: version.php,v 1.16 2006/08/06 13:07:08 onokazu Exp $
+define("XOOPS_VERSION","XOOPS 2.0.16a JP");
 ?>
\ No newline at end of file


xoops-cvslog メーリングリストの案内
Back to archive index