This change was missing in 19_STABLE

This commit is contained in:
stronk7
2008-01-04 18:18:18 +00:00
parent c319e83622
commit fea7cdb0ba
+1 -1
View File
@@ -2583,7 +2583,7 @@ function rcache_set($table, $id, $rec) {
global $CFG, $MCACHE, $rcache;
if ($CFG->cachetype === 'internal') {
$rcache->data[$table][$id] = $rec;
$rcache->data[$table][$id] = fullclone($rec);
} else {
$key = $table . '|' . $id;