Commit c7526865 authored by Marc Ferran (aka Markus)'s avatar Marc Ferran (aka Markus)
Browse files

- #779522 - Provide support for the Administration Role module.

parent 4ecbf747
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@

Features:
- #795272 by erik.ahlswede - Disable popup when only public and hidden options.
- #779522 - Provide support for the Administration Role module.

Bugfixes:
- #775294 by quiptime - Fatal error: Call to undefined function flag_friend_determine_friend_status().
+5 −0
Original line number Diff line number Diff line
@@ -23,6 +23,11 @@ function cck_private_fields_set_content_field_privacy($field_name, $content_fiel
    // Delete privacy data related to the field instance being disabled.
    db_query("DELETE FROM {cck_private_fields} WHERE field_name = '%s'", $field_name);
  }

  // Provide support for the Administration Role module.
  if (module_exists('adminrole')) {
    adminrole_update_permissions();
  }
}

/**