From 40e708b6935df8cd97db1166fda0e63ed443c3b3 Mon Sep 17 00:00:00 2001 From: David Mudrak Date: Fri, 2 Apr 2010 09:51:00 +0000 Subject: [PATCH] MDL-21845 Fixed missing multilang support --- user/profile/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/profile/index.php b/user/profile/index.php index f2946b5cd17..ce500542785 100644 --- a/user/profile/index.php +++ b/user/profile/index.php @@ -119,7 +119,7 @@ foreach ($categories as $category) { if ($fields = get_records_select('user_info_field', "categoryid=$category->id", 'sortorder ASC')) { foreach ($fields as $field) { - $table->data[] = array($field->name, profile_field_icons($field)); + $table->data[] = array(format_string($field->name), profile_field_icons($field)); } }