diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-22 16:07:03 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-04-22 16:07:03 +0000 |
commit | 9ba5163eda3909ee799424a310ef1f71e3b07897 (patch) | |
tree | 41567050d854b66aa61380c69fe9b097dcf0c575 | |
parent | c1aadd2a21c867e02682777ea6c7fd7ae88f6148 (diff) | |
download | brdo-9ba5163eda3909ee799424a310ef1f71e3b07897.tar.gz brdo-9ba5163eda3909ee799424a310ef1f71e3b07897.tar.bz2 |
#368064 follow-up by c960657: Fix typo preventing edit and delete links on translation page from working.
-rw-r--r-- | includes/locale.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/locale.inc b/includes/locale.inc index 1735db1fe..57d5ab92b 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -2268,8 +2268,8 @@ function _locale_translate_seek() { $groups[$string['group']], array('data' => check_plain(truncate_utf8($string['source'], 150, FALSE, TRUE)) . '<br /><small>' . $string['location'] . '</small>'), array('data' => _locale_translate_language_list($string['languages'], $limit_language), 'align' => 'center'), - array('data' => l(t('edit'), "/admin/international/translate/edit/$lid", array('query' => drupal_get_destination())), 'class' => 'nowrap'), - array('data' => l(t('delete'), "/admin/international/translate/delete/$lid", array('query' => drupal_get_destination())), 'class' => 'nowrap'), + array('data' => l(t('edit'), "admin/international/translate/edit/$lid", array('query' => drupal_get_destination())), 'class' => 'nowrap'), + array('data' => l(t('delete'), "admin/international/translate/delete/$lid", array('query' => drupal_get_destination())), 'class' => 'nowrap'), ); } |