o #674772 by joachim: Unable to distinguish profile.module fields with same name in different profile categories.
o #727798 by SteveReher: Fix typo in overrides.html documentation.
o #621980 by yhahn: Namespace tabs.js to guarantee no conflicts with jQuery UI.
+ o #684656 by yhahn: Prevent Views from performing an unneeded variable_set() during block list.
Other changes:
o #570558 by yhahn: Segment default views caching to conserve memory used by Views during normal operation.
}
}
- variable_set('views_block_hashes', $hashes);
+ // Only save hashes if they have changed.
+ $old_hashes = variable_get('views_block_hashes', array());
+ if ($hashes != $old_hashes) {
+ variable_set('views_block_hashes', $hashes);
+ }
// Save memory: Destroy those views.
foreach ($views as $view) {
$view->destroy();