diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-19 03:47:26 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:31:23 +0530 |
commit | 1363dccf12c66e525cd61f98e417e3957fc05319 (patch) | |
tree | 0284eff5a95d93cccc7302de7bb3f6a1ab0fcd86 /phpBB/phpbb | |
parent | e1454ec4872e22d9a3fe6e9a147d9926212c11b7 (diff) | |
download | forums-1363dccf12c66e525cd61f98e417e3957fc05319.tar forums-1363dccf12c66e525cd61f98e417e3957fc05319.tar.gz forums-1363dccf12c66e525cd61f98e417e3957fc05319.tar.bz2 forums-1363dccf12c66e525cd61f98e417e3957fc05319.tar.xz forums-1363dccf12c66e525cd61f98e417e3957fc05319.zip |
[ticket/12730] Use string template for Google+ CPF instead of a new one
PHPBB3-12730
Diffstat (limited to 'phpBB/phpbb')
-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 aec37dffe9..a58aa6a97f 100644 --- a/phpBB/phpbb/profilefields/type/type_googleplus.php +++ b/phpBB/phpbb/profilefields/type/type_googleplus.php @@ -53,4 +53,12 @@ class type_googleplus extends type_string return $field_value; } + + /** + * {@inheritDoc} + */ + public function get_template_filename() + { + return 'profilefields/string.html'; + } } |