From 985dbd448272315e75a071d628209852a62a19c8 Mon Sep 17 00:00:00 2001 From: Shitiz Garg Date: Sat, 21 Jun 2014 01:54:15 +0530 Subject: [PATCH] [ticket/12730] Switch service name to googleplus for type_googleplus PHPBB3-12730 --- phpBB/phpbb/profilefields/type/type_googleplus.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php index 37ec0dd999..49fa557fab 100644 --- a/phpBB/phpbb/profilefields/type/type_googleplus.php +++ b/phpBB/phpbb/profilefields/type/type_googleplus.php @@ -18,9 +18,9 @@ class type_googleplus extends type_string /** * {@inheritDoc} */ - public function get_name_short() + public function get_service_name() { - return 'googleplus'; + return 'profilefields.type.googleplus'; } /** @@ -55,12 +55,4 @@ class type_googleplus extends type_string return $field_value; } - - /** - * {@inheritDoc} - */ - public function get_template_filename() - { - return 'profilefields/string.html'; - } }