--- search_block.install 2008-12-06 15:22:53.000000000 +1100 +++ search_block_dev.install 2008-12-06 15:23:03.000000000 +1100 @@ -38,12 +38,6 @@ */ function search_block_install() { $created = drupal_install_schema('search_block'); - if ($created[0]['success']) { - drupal_set_message(t('Search Block module installed successfully.')); - } - else { - drupal_set_message(t('Table installation for the Search Block module was unsuccessful. The tables may need to be installed by hand. See the search_block.install file for the database schema. Alternatively, see search_block.install for Drupal 5.x for the complete SQL command for MySQL.'), 'error'); - } } /** @@ -59,4 +53,13 @@ variable_del('search_block_'. $type); variable_del('search_block_previous_.'. $type); } +} + +/** + * Implementation of hook_update_N() + * + */ +function search_block_update_6000() { + $ret = array(); + return $ret; }