diff options
author | David Rothstein <drothstein@gmail.com> | 2014-11-02 14:31:02 -0500 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2014-11-02 14:31:02 -0500 |
commit | 8d5c1bf0220a687c36467c0c311abc341589c517 (patch) | |
tree | b74b52e4e0a7413c9d73306fb4e8cabaab6a604c | |
parent | 417fae5b2547d3b27071eab5cd0f23356956b176 (diff) | |
download | brdo-8d5c1bf0220a687c36467c0c311abc341589c517.tar.gz brdo-8d5c1bf0220a687c36467c0c311abc341589c517.tar.bz2 |
Issue #366152 by Mile23, bjaspan: Removed the Field module's field_modules_uninstalled() function, since it did not do anything when it was invoked.
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rw-r--r-- | modules/field/field.module | 11 |
2 files changed, 2 insertions, 11 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 352a235b0..a312b6eac 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,8 @@ Drupal 7.33, xxxx-xx-xx (development version) ----------------------- +- Removed the Field module's field_modules_uninstalled() function, since it did + not do anything when it was invoked. - Added a "theme_hook_original" variable to templates and theme functions and an optional sitewide theme debug mode, to provide contextual information in the page's HTML to theme developers (API addition). diff --git a/modules/field/field.module b/modules/field/field.module index 132238ecd..eef78a350 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -343,17 +343,6 @@ function field_cron() { } /** - * Implements hook_modules_uninstalled(). - */ -function field_modules_uninstalled($modules) { - module_load_include('inc', 'field', 'field.crud'); - foreach ($modules as $module) { - // TODO D7: field_module_delete is not yet implemented - // field_module_delete($module); - } -} - -/** * Implements hook_system_info_alter(). * * Goes through a list of all modules that provide a field type, and makes them |