summaryrefslogtreecommitdiff
path: root/modules/profile
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-17 13:50:52 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-17 13:50:52 +0000
commit33ef42291fab05ea84497f6d520e950186ba4610 (patch)
treefa575e70c5f257d98f36d260c684b7dd4b282a1c /modules/profile
parent5d6bc299ff1da408d24d618f800cd6f10d42062d (diff)
downloadbrdo-33ef42291fab05ea84497f6d520e950186ba4610.tar.gz
brdo-33ef42291fab05ea84497f6d520e950186ba4610.tar.bz2
- Patch #885000 by cwgordon7: drupal_placeholder() takes an array as an argument.
Diffstat (limited to 'modules/profile')
-rw-r--r--modules/profile/profile.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.pages.inc b/modules/profile/profile.pages.inc
index 023b2357c..a85d6fe1f 100644
--- a/modules/profile/profile.pages.inc
+++ b/modules/profile/profile.pages.inc
@@ -77,7 +77,7 @@ function profile_browse() {
$output .= theme('pager', array('tags' => NULL));
if ($field->type == 'selection' || $field->type == 'list' || $field->type == 'textfield') {
- $title = strtr(check_plain($field->page), array('%value' => drupal_placeholder(array('text' => $value))));
+ $title = strtr(check_plain($field->page), array('%value' => drupal_placeholder($value)));
}
else {
$title = check_plain($field->page);