diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-27 04:12:39 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-10-27 04:12:39 +0000 |
commit | 0e05035b7104baa80614eefab90b6d90996ca3dc (patch) | |
tree | ad6180c49c429e48e5d191077aa0b8de0fabb1eb /modules/locale | |
parent | ca7b56e7351a7fe57d2c1d4c6feef44e2879caf0 (diff) | |
download | brdo-0e05035b7104baa80614eefab90b6d90996ca3dc.tar.gz brdo-0e05035b7104baa80614eefab90b6d90996ca3dc.tar.bz2 |
#610204 by effulgentsia, Gábor Hojtsy, sun, Damien Tournoud and ksenzee: API changes to support overlays: lays ground work for implementation.
Diffstat (limited to 'modules/locale')
-rw-r--r-- | modules/locale/locale.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/locale/locale.test b/modules/locale/locale.test index bb6a2de86..75e96a0b7 100644 --- a/modules/locale/locale.test +++ b/modules/locale/locale.test @@ -237,7 +237,7 @@ class LocaleTranslationFunctionalTest extends DrupalWebTestCase { $this->clickLink(t('edit')); // We save the lid from the path. $matches = array(); - preg_match('!admin/config/regional/translate/edit/(\d)+!', $this->getUrl(), $matches); + preg_match('!admin/config/regional/translate/edit/(\d+)!', $this->getUrl(), $matches); $lid = $matches[1]; // No t() here, it's surely not translated yet. $this->assertText($name, t('name found on edit screen.')); |