You are here

function node_gallery_update_6202 in Node Gallery 6.2

Same name and namespace in other branches
  1. 6.3 node_gallery.install \node_gallery_update_6202()

Implementation of hook_update_N() Alerting the users that we have potentially broken their views

File

./node_gallery.install, line 381
Node gallery install file.

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;
}