diff options
author | Rubén Calvo <rubencm@gmail.com> | 2017-04-04 14:08:23 +0200 |
---|---|---|
committer | Rubén Calvo <rubencm@gmail.com> | 2017-04-04 14:08:48 +0200 |
commit | d44dde390ac646dcc22aa3266d409be3cbbb2001 (patch) | |
tree | 2db702eda87d30b4a7cb7fc9226b9333b98655e9 /phpBB/includes | |
parent | 43731202fd22b697ce8520fb88b9cc707c5f479d (diff) | |
download | forums-d44dde390ac646dcc22aa3266d409be3cbbb2001.tar forums-d44dde390ac646dcc22aa3266d409be3cbbb2001.tar.gz forums-d44dde390ac646dcc22aa3266d409be3cbbb2001.tar.bz2 forums-d44dde390ac646dcc22aa3266d409be3cbbb2001.tar.xz forums-d44dde390ac646dcc22aa3266d409be3cbbb2001.zip |
[ticket/15150] Remove default values for arguments
PHPBB3-15150
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_jabber.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_jabber.php b/phpBB/includes/functions_jabber.php index 0ef4797886..842910a023 100644 --- a/phpBB/includes/functions_jabber.php +++ b/phpBB/includes/functions_jabber.php @@ -239,7 +239,7 @@ class jabber * @access public * @return bool */ - function open_socket($server, $port, $use_ssl = false, $verify_peer = true, $verify_peer_name = true, $allow_self_signed = false) + function open_socket($server, $port, $use_ssl, $verify_peer, $verify_peer_name, $allow_self_signed) { if (@function_exists('dns_get_record')) { |