function node_gallery_update_6202 in Node Gallery 6.3
Same name and namespace in other branches
- 6.2 node_gallery.install \node_gallery_update_6202()
Implements hook_update_N() Alerting the users that we have potentially broken their views
File
- ./
node_gallery.install, line 726 - Install, update and uninstall functions for the node_gallery module.
Code
function node_gallery_update_6202() {
$ret = array();
drupal_set_message(t('Node Gallery had to change some of our views code to <a href="http://drupal.org/node/547982">fix a bug relating to the "Gallery Operations" field</a>. If you used this field, you may be required to rebuild any views using that field. %broken.', array(
'%broken' => l(t('Read this information on how to fix any broken views'), 'http://drupal.org/node/547982', array(
'fragment' => 'comment-2199342',
)),
)), 'warning');
return $ret;
}