diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-08-03 18:25:08 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-08-03 23:20:53 +0530 |
commit | 79cccebc6e93e4e7f1231ad8797e8a94e3033a46 (patch) | |
tree | 1fc09a36c2b9cecf1b0d4419786694e2ee3c9c44 | |
parent | c991b1d587e8ab3b080e2e6762646efe00e05bc5 (diff) | |
download | forums-79cccebc6e93e4e7f1231ad8797e8a94e3033a46.tar forums-79cccebc6e93e4e7f1231ad8797e8a94e3033a46.tar.gz forums-79cccebc6e93e4e7f1231ad8797e8a94e3033a46.tar.bz2 forums-79cccebc6e93e4e7f1231ad8797e8a94e3033a46.tar.xz forums-79cccebc6e93e4e7f1231ad8797e8a94e3033a46.zip |
[ticket/12910] Set get_name for Google+ fields
PHPBB3-12910
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_googleplus.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php index df1bcc7f4b..887baa3de1 100644 --- a/phpBB/phpbb/profilefields/type/type_googleplus.php +++ b/phpBB/phpbb/profilefields/type/type_googleplus.php @@ -18,6 +18,14 @@ class type_googleplus extends type_string /** * {@inheritDoc} */ + public function get_name() + { + return $this->user->lang('FIELD_GOOGLEPLUS'); + } + + /** + * {@inheritDoc} + */ public function get_service_name() { return 'profilefields.type.googleplus'; |