A bug show up when i make the module working. 'Unsupported operand types in common.inc'. I followed http://drupal.org/node/362799 and fixed this bug. It is caused by misused funtion url() in community_tags.pages.inc at line 46. The second parameters should be a array in drupal 6. However, in community_tags.pages.inc, it is used in the drupal 5's way.
This is my correction:
line 40 -48 changs to :
if (!$access) {
$destination = drupal_get_destination();
$option = array();
$option['query'] = $destination;
$form['login'] = array(
'#type' => 'markup',
'#value' => '

'. t('Login or register to tag items', array('@login' => url('user/login', $option), '@register' => url('user/register', $option))) .'

',
);
}

Comments

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.