? .DS_Store
? LICENSE.txt
? taxonomy_role.20080627.patch
Index: taxonomy_role.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_role/taxonomy_role.info,v
retrieving revision 1.1
diff -r1.1 taxonomy_role.info
3,4c3,5
< description = "Restricts access to vocabularies on node forms by role."
< dependencies = taxonomy
---
> description = Restricts access to vocabularies on node forms by role.
> dependencies[]  = taxonomy
> core = 6.x
\ No newline at end of file
Index: taxonomy_role.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_role/taxonomy_role.install,v
retrieving revision 1.2
diff -r1.2 taxonomy_role.install
14,16c14
< }
< 
< 
---
> }
\ No newline at end of file
Index: taxonomy_role.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_role/taxonomy_role.module,v
retrieving revision 1.3
diff -r1.3 taxonomy_role.module
12,13c12,13
< function taxonomy_role_help($section) {
<   switch ($section) {
---
> function taxonomy_role_help($path, $arg) {
>   switch ($path) {
23c23
< function taxonomy_role_menu($may_cache) {
---
> function taxonomy_role_menu() {
25,27c25,26
<   if ($may_cache) {
<     $items[] = array(
<       'path' => 'admin/settings/taxonomy_role',
---
> 
>     $items['admin/settings/taxonomy_role'] = array(
29,31c28,30
<       'callback' => 'drupal_get_form',
<       'callback arguments' => array('taxonomy_role_admin_settings_form'),
<       'access' => user_access('administer site configuration'),
---
>       'page callback' => 'drupal_get_form',
>       'page arguments' => array('taxonomy_role_admin_settings_form'),
>       'access arguments' => array('administer site configuration'),
35c34
<   }
---
>     
42c41
< function taxonomy_role_form_alter($form_id, &$form) { 
---
> function taxonomy_role_form_alter(&$form, &$form_state, $form_id) { 
