MY_Session workaround is not required anymore with CI3.0

See for fix: https://github.com/bcit-ci/CodeIgniter/issues/3073
This commit is contained in:
FrancescoUK
2016-04-08 08:49:23 +01:00
parent d83c8051f6
commit 984f6c5cac

View File

@@ -1,19 +0,0 @@
<?php
class MY_Session extends CI_Session {
/**
* Update an existing session
*
* @access public
* @return void
*/
function sess_update() {
// skip the session update if this is an AJAX call! This is a bug in CI; see:
// https://github.com/EllisLab/CodeIgniter/issues/154
// http://codeigniter.com/forums/viewthread/102456/P15
if ( !($this->CI->input->is_ajax_request()) ) {
parent::sess_update();
}
}
}