Issue-3431931: Drupal 11 compatibility fixes for memcache.
1 unresolved thread
Closes #3431931
Merge request reports
Activity
added 1 commit
- 90ad2b1c - Issue-3431931: Drupal 11 compatibility fixes for memcache.
added 1 commit
- b1c55efc - Issue-3431931: Drupal 11 compatibility fixes for memcache.
@ankitv18 Looks like it's missing following changes: !27 (diffs) in
memcache_admin/src/Controller/MemcacheStatisticsController.php
,memcache_admin/src/Stats/MemcacheStatsObject.php
added 1 commit
- b084701b - The DeprecationHelper Utility class added to support 9.x, 10.x & 11.x release.
186 188 return $this->t( 187 189 '@to:@from (@written% to cache)', 188 190 [ 189 '@to' => format_size((int) $read), 190 '@from' => format_size((int) $write), 191 '@to' => DeprecationHelper::backwardsCompatibleCall(\Drupal::VERSION, '10.2.0', fn() => ByteSizeMarkup::create((int) $read), fn() => format_size((int) $read)), changed this line in version 14 of the diff
added 1 commit
- 85229a15 - Using a class_exisits to handle the deprecated method format_size.
Please register or sign in to reply