Changeset 2328681
- Timestamp:
- 06/22/2020 03:07:06 PM (6 years ago)
- Location:
- wp-database-session-handler/branches/1.0.1
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
sc-session-handler.php (modified) (2 diffs)
-
session_handler.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-database-session-handler/branches/1.0.1/readme.txt
r1843426 r2328681 4 4 Tags: session, database 5 5 Requires at least: 4.0 6 Tested up to: 4.9.47 Stable tag: 1.0. 06 Tested up to: 5.4.2 7 Stable tag: 1.0.1 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 44 44 == Changelog == 45 45 46 = 1.0.1 = 47 * Fixed compatibility with PHP > 7.1 48 46 49 = 1.0.0 = 47 50 * First release. … … 49 52 == Upgrade Notice == 50 53 54 = 1.0.1 = 55 Upgrade if you use PHP 7.1 or higher 56 51 57 = 1.0 = 52 58 First release. -
wp-database-session-handler/branches/1.0.1/sc-session-handler.php
r1843512 r2328681 4 4 Plugin URI: http://www.stefanocanziani.com/wp_plugin/sc-session-handler.zip 5 5 Description: Add handling of user session inside SQL Database. This session manager is useful if you have an environment with more than one frontend server and a load balancer who switch the web traffic dinamically between frontend hosts. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: Stefano Canziani 8 8 Author URI: http://www.stefanocanziani.com … … 27 27 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 28 28 29 Copyright 2018 Stefano Canziani.29 Copyright 2018-2020 Stefano Canziani. 30 30 */ 31 31 -
wp-database-session-handler/branches/1.0.1/session_handler.php
r1843426 r2328681 170 170 return $record['data']; 171 171 } else { 172 return false;172 return ''; //use empty string instead of null! 173 173 } 174 174 } else { 175 return false;175 return ''; //use empty string instead of null! 176 176 } 177 177
Note: See TracChangeset
for help on using the changeset viewer.