Closed (fixed)
Project:
Session Favorites
Version:
6.x-1.4
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2009 at 15:30 UTC
Updated:
17 Dec 2009 at 00:50 UTC
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
Comment #1
jhedstromThank, committed to 6.x.