Skip to content

Commit

Permalink
Merge pull request #126 from intelliboard/main
Browse files Browse the repository at this point in the history
Release 1.168.0
  • Loading branch information
vitaliikovali authored Mar 1, 2024
2 parents 2996e1a + 049d67e commit bf32b5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion classes/repositories/cache_storage_repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ private function get_datatype_keys($cache) {

$datatypekeys = [];
foreach ($cachekeys as $key) {
$keyprefix = $this->datatype['name'] . self::CACHE_USER_IDENTIFIER;
if ($key == $this->datatype['name'] ||
stripos($key, $this->datatype['name'] . self::CACHE_USER_IDENTIFIER) !== false) {
substr($key, 0, strlen($keyprefix)) === $keyprefix) {
$datatypekeys[] = $key;
}
}
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2024022300;
$plugin->version = 2024030100;
$plugin->requires = 2017111300;
$plugin->release = '1.166.0';
$plugin->release = '1.168.0';
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'local_intellidata';

0 comments on commit bf32b5e

Please sign in to comment.