function aggregator_page_list_validate in Drupal 5
Same name and namespace in other branches
- 4 modules/aggregator.module \aggregator_page_list_validate()
File
- modules/
aggregator/ aggregator.module, line 1153 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Code
function aggregator_page_list_validate($form_id, &$form) {
if (!user_access('administer news feeds')) {
form_error($form, t('You are not allowed to categorize this feed item.'));
}
}