Posted by catch on January 31, 2012 at 4:31am
Project:
Drupal core
Introduced in branch:
7.x
Introduced in version:
7.12 Description:
The method signature for DrupalCacheArray::set() has changed:
Before:
<?php
public function set($cid, $data, $bin, $lock = TRUE) {}
?>After:
<?php
public function set($data, $lock = TRUE) {}
?>This will affect the following code:
- Classes that inherit from DrupalCacheArray and overrides the set() method
- Classes that inherit from DrupalCacheArray and call the set() method
Impacts:
Module developers