Link Text won't be translated
Devr - February 20, 2009 - 15:05
| Project: | Read More Link (Drupal 6 and earlier) |
| Version: | 5.x-1.3 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
Link-text won't be translated by locale.
Edit ed_readmore.module on
$readmore_url = l(variable_get('ed_readmore_text', t(ED_READMORE_TEXT_DEFAULT)), "node/$node->nid", NULL, NULL, NULL, TRUE, TRUE);and change it to
$readmore_url = l(t(variable_get('ed_readmore_text', t(ED_READMORE_TEXT_DEFAULT))), "node/$node->nid", NULL, NULL, NULL, TRUE, TRUE);and you're done.
Best, Devr

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