diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2012-11-25 20:50:31 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2012-11-25 20:50:31 +0100 |
| commit | 6522190ff1b7a7b4384389f23c1229911c1a58d2 (patch) | |
| tree | 135b4001a7063f291daf30ba2d7cb67b4d10afec /phpBB/includes/avatar/driver/remote.php | |
| parent | a77fcdb5f93ed291c223c445a46a5641cfdb27ea (diff) | |
| download | forums-6522190ff1b7a7b4384389f23c1229911c1a58d2.tar forums-6522190ff1b7a7b4384389f23c1229911c1a58d2.tar.gz forums-6522190ff1b7a7b4384389f23c1229911c1a58d2.tar.bz2 forums-6522190ff1b7a7b4384389f23c1229911c1a58d2.tar.xz forums-6522190ff1b7a7b4384389f23c1229911c1a58d2.zip | |
[feature/avatars] Docblock fixes and small change for php_ext
PHPBB3-10018
Diffstat (limited to 'phpBB/includes/avatar/driver/remote.php')
| -rw-r--r-- | phpBB/includes/avatar/driver/remote.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/avatar/driver/remote.php b/phpBB/includes/avatar/driver/remote.php index f47b0d33f4..134bf070e5 100644 --- a/phpBB/includes/avatar/driver/remote.php +++ b/phpBB/includes/avatar/driver/remote.php @@ -82,7 +82,7 @@ class phpbb_avatar_driver_remote extends phpbb_avatar_driver $url = 'http://' . $url; } - require_once($this->phpbb_root_path . 'includes/functions_user' . $this->phpEx); + require_once($this->phpbb_root_path . 'includes/functions_user' . $this->php_ext); $error = array_merge($error, validate_data(array( 'url' => $url, @@ -128,7 +128,7 @@ class phpbb_avatar_driver_remote extends phpbb_avatar_driver return false; } - include_once($this->phpbb_root_path . 'includes/functions_upload' . $this->phpEx); + include_once($this->phpbb_root_path . 'includes/functions_upload' . $this->php_ext); $types = fileupload::image_types(); $extension = strtolower(filespec::get_extension($url)); |
