Index: link.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/link/link.install,v retrieving revision 1.5.2.3 diff -u -p -r1.5.2.3 link.install --- link.install 22 Sep 2008 05:23:16 -0000 1.5.2.3 +++ link.install 16 Feb 2009 23:57:35 -0000 @@ -39,3 +39,15 @@ function link_disable() { function link_update_last_removed() { return 1; } + +/** + * Implementation of hook_update_N(). + */ +function link_update_6000() { + // This check has the side-effect of calling content_associate_fields(), + // which is needed to update the CCK schema. + if ($abort = content_check_update('link')) { + return $abort; + } + return array(); +} \ No newline at end of file