You are here

jammer_feed.module in Jammer 7

Same filename and directory in other branches
  1. 6 jammer_feed.module

Remove the default, core RSS feed.

File

jammer_feed.module
View source
<?php

/**
 * @file
 * Remove the default, core RSS feed.
 */

/**
 * Implements hook_menu_alter().
 */
function jammer_menu_alter(&$items) {
  unset($items['rss.xml']);
}

Functions

Namesort descending Description
jammer_menu_alter Implements hook_menu_alter().