diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-11 11:52:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-11 11:52:46 +0000 |
commit | 735e532bee7482fc55b91dd39b1e629dfd9e1957 (patch) | |
tree | a2e07bd3f3346a24fc769d76d46eda2bc6d2ada0 /modules/translation | |
parent | ef5c041534a4d3afcb382cc8bec646e725ee61c9 (diff) | |
download | brdo-735e532bee7482fc55b91dd39b1e629dfd9e1957.tar.gz brdo-735e532bee7482fc55b91dd39b1e629dfd9e1957.tar.bz2 |
- Patch #508458 by catch, Gábor Hojtsy, yoroy: created 'Configuration and modules' section so we can start moving over configuration items. Let's see how this goes ...
Diffstat (limited to 'modules/translation')
-rw-r--r-- | modules/translation/translation.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/translation/translation.test b/modules/translation/translation.test index e3a218ec4..fa8c6ab68 100644 --- a/modules/translation/translation.test +++ b/modules/translation/translation.test @@ -92,13 +92,13 @@ class TranslationTestCase extends DrupalWebTestCase { */ function addLanguage($language_code) { // Check to make sure that language has not already been installed. - $this->drupalGet('admin/international/language'); + $this->drupalGet('admin/config/international/language'); if (strpos($this->drupalGetContent(), 'enabled[' . $language_code . ']') === FALSE) { // Doesn't have language installed so add it. $edit = array(); $edit['langcode'] = $language_code; - $this->drupalPost('admin/international/language/add', $edit, t('Add language')); + $this->drupalPost('admin/config/international/language/add', $edit, t('Add language')); // Make sure we're not using a stale list. drupal_static_reset('language_list'); |