diff options
Diffstat (limited to 'modules/gallery/helpers/gallery_event.php')
| -rw-r--r-- | modules/gallery/helpers/gallery_event.php | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php index 3f77bc42..36f91142 100644 --- a/modules/gallery/helpers/gallery_event.php +++ b/modules/gallery/helpers/gallery_event.php @@ -413,7 +413,7 @@ class gallery_event_Core {      $fields = array("name" => t("Name"), "locale" => t("Language Preference"),                      "email" => t("Email"), "full_name" => t("Full name"), "url" => "Web site"); -    if (!$data->display_all) { +    if (!$data->user->guest) {        $fields = array("name" => t("Name"), "full_name" => t("Full name"), "url" => "Web site");      }      $v->user_profile_data = array(); @@ -423,9 +423,6 @@ class gallery_event_Core {          if ($field == "locale") {            $value = locales::display_name($value);          } -        if ($field == "full_name") { -          $value = t($value); -        }          $v->user_profile_data[(string) $label] = $value;        }      } | 
