Skip to content

Instantly share code, notes, and snippets.

@danreb
Created December 20, 2012 01:53
Show Gist options
  • Select an option

  • Save danreb/4342364 to your computer and use it in GitHub Desktop.

Select an option

Save danreb/4342364 to your computer and use it in GitHub Desktop.
Hide Drupal Specific module from list of modules in update list at admin/reports/updates
<?php
function custom_update_projects_alter(&$projects) {
// Hide a site-specific module from the list.
unset($projects['custom']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment