diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2013-11-27 15:18:42 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2013-11-27 15:18:42 +0100 |
| commit | 6618f0ea246100c55636ef679df55d2c951dfbc0 (patch) | |
| tree | 300fa254b1196013eeff2aa3c8432ec402d5290a /phpBB/phpbb/avatar/driver/remote.php | |
| parent | 125e76f9aa83141534387a965e8373c9b9cd5c4d (diff) | |
| download | forums-6618f0ea246100c55636ef679df55d2c951dfbc0.tar forums-6618f0ea246100c55636ef679df55d2c951dfbc0.tar.gz forums-6618f0ea246100c55636ef679df55d2c951dfbc0.tar.bz2 forums-6618f0ea246100c55636ef679df55d2c951dfbc0.tar.xz forums-6618f0ea246100c55636ef679df55d2c951dfbc0.zip | |
[ticket/11859] Make avatar drivers return template filename
The service name might not follow the expected naming scheme which would
cause abnormally long filenames and confusion for authors that might add
more avatar drivers.
PHPBB3-11859
Diffstat (limited to 'phpBB/phpbb/avatar/driver/remote.php')
| -rw-r--r-- | phpBB/phpbb/avatar/driver/remote.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/avatar/driver/remote.php b/phpBB/phpbb/avatar/driver/remote.php index 22d50c703e..36623942df 100644 --- a/phpBB/phpbb/avatar/driver/remote.php +++ b/phpBB/phpbb/avatar/driver/remote.php @@ -186,4 +186,12 @@ class remote extends \phpbb\avatar\driver\driver 'avatar_height' => $height, ); } + + /** + * @inheritdoc + */ + public function get_template_name() + { + return 'ucp_avatar_options_remote.html'; + } } |
