summaryrefslogtreecommitdiff
path: root/modules/profile/profile.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-05 01:18:26 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-05 01:18:26 +0000
commitdd571ffe34ef4202a3bd95fb5a36ddbce0fb3096 (patch)
treee9c45b1fcab3f105e116c9cf15d98dbb8c05299b /modules/profile/profile.test
parentc81af2d586f5f03df62b38b7365ebb5b2deeeda0 (diff)
downloadbrdo-dd571ffe34ef4202a3bd95fb5a36ddbce0fb3096.tar.gz
brdo-dd571ffe34ef4202a3bd95fb5a36ddbce0fb3096.tar.bz2
#464862 follow-up by kkaefer: Rename drupal_css_class() to drupal_html_class_X(), for better accuracy.
Diffstat (limited to 'modules/profile/profile.test')
-rw-r--r--modules/profile/profile.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile/profile.test b/modules/profile/profile.test
index 507d5ebd3..4ea8ee51a 100644
--- a/modules/profile/profile.test
+++ b/modules/profile/profile.test
@@ -266,8 +266,8 @@ class ProfileTestAutocomplete extends ProfileTestCase {
$this->setProfileField($field, $field['value']);
// Set some html for what we want to see in the page output later.
- $autocomplete_html = '<input class="autocomplete" type="hidden" id="' . drupal_css_id('edit-' . $field['form_name'] . '-autocomplete') . '" value="' . url('profile/autocomplete/' . $field['fid'], array('absolute' => TRUE)) . '" disabled="disabled" />';
- $field_html = '<input type="text" maxlength="255" name="' . $field['form_name'] . '" id="' . drupal_css_id('edit-' . $field['form_name']) . '" size="60" value="' . $field['value'] . '" class="form-text form-autocomplete required" />';
+ $autocomplete_html = '<input class="autocomplete" type="hidden" id="' . drupal_html_id('edit-' . $field['form_name'] . '-autocomplete') . '" value="' . url('profile/autocomplete/' . $field['fid'], array('absolute' => TRUE)) . '" disabled="disabled" />';
+ $field_html = '<input type="text" maxlength="255" name="' . $field['form_name'] . '" id="' . drupal_html_id('edit-' . $field['form_name']) . '" size="60" value="' . $field['value'] . '" class="form-text form-autocomplete required" />';
// Check that autocompletion html is found on the user's profile edit page.
$this->drupalGet('user/' . $this->admin_user->uid . '/edit/' . $category);