If you are using the core Blog module with this module, the only user that appears in the dropdown is admin (uid 1). This is presumably because the module is hardcoded to work only with regular nodes.

Comments

pygatea’s picture

I fixed this (hackishly) by changing line 11 of author_select.module to the following:

$permissions = array('create ' . $node->type . ' content', 'edit any ' . $node->type . ' content' , 'create blog entries' , 'edit any blog entry');