Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Version 1.1.28 under development
--------------------------------

- Bug #4491: Fixed limit and Offset not working correctly with MSSQL version 11 (2012) and newer (shnoulle, wtommyw)
- Bug #4497: PHP 8.1 compatibility: Fix unserialize null in CRedisCache (kenguest, wtommyw)
- Bug #4500: PHP 8.1 compatibility: Fix deprecation warnings in CMysql classes (csears123)

Version 1.1.27 November 21, 2022
Expand Down
5 changes: 4 additions & 1 deletion framework/caching/CRedisCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,10 @@ private function byteLength($str)
*/
protected function getValue($key)
{
return $this->executeCommand('GET',array($key));
$value=$this->executeCommand('GET',array($key));
if ($value===null)
return false;
return $value;
}

/**
Expand Down