Diff for /embedaddon/php/ext/session/tests/session_set_save_handler_iface_002.phpt between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/05/29 12:34:42 version 1.1.1.2, 2013/07/22 01:32:01
Line 32  class MySession2 implements MySessionHandlerInterface  Line 32  class MySession2 implements MySessionHandlerInterface 
   
         public function open($path, $name) {          public function open($path, $name) {
                 if (!$path) {                  if (!$path) {
                        $path = '/tmp';                        $path = sys_get_temp_dir();
                 }                  }
                 $this->path = $path . '/u_sess_' . $name;                  $this->path = $path . '/u_sess_' . $name;
                 return true;                  return true;

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>