summaryrefslogtreecommitdiff
path: root/modules/profile/profile.pages.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-22 14:47:14 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-22 14:47:14 +0000
commit8749a43a5419fd0e55034a23afb3fc63158ccd5f (patch)
tree1e13e3a8b5ec70fb99a29bc6cda5bc304125cf25 /modules/profile/profile.pages.inc
parenta71fd090aeefd818d80c6163c690694ea6259859 (diff)
downloadbrdo-8749a43a5419fd0e55034a23afb3fc63158ccd5f.tar.gz
brdo-8749a43a5419fd0e55034a23afb3fc63158ccd5f.tar.bz2
- Patch #601548 by Damien Tournoud, moshe weitzman: loosen the dependency between t() and the theming layer.
Diffstat (limited to 'modules/profile/profile.pages.inc')
-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 8c60c68f7..9bb406bb4 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' => theme('placeholder', array('text' => $value))));
+ $title = strtr(check_plain($field->page), array('%value' => drupal_placeholder(array('text' => $value))));
}
else {
$title = check_plain($field->page);