At line 309 the text "remove" needs to be translated before fed to the link building function.

Current line:

// add a remove link
$remove_link = ' ' . l('remove', variable_get('session_favorites_path', 'session-favorites') . '/remove/' . $node->nid, array('query' => drupal_get_destination()));

Corrected line:

// add a remove link
$remove_link = ' ' . l(t('remove'), variable_get('session_favorites_path', 'session-favorites') . '/remove/' . $node->nid, array('query' => drupal_get_destination()));

Comments

jhedstrom’s picture

Status: Needs work » Fixed

Thank, committed to 6.x.

Status: Fixed » Closed (fixed)

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