You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (php_array_existsc(zoptions, "ca_dir") ||php_array_existsc(zoptions, "capath")) {
1320
-
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENTTSRMLS_CC, "\"ca_dir\" and \"capath\" options are not supported by Secure Channel and Secure Transport");
1319
+
if (php_array_existsc(zoptions, "ca_dir")) {
1320
+
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENTTSRMLS_CC, "\"ca_dir\" option is not supported by Secure Channel and Secure Transport");
1321
+
returnNULL;
1322
+
}
1323
+
1324
+
if (php_array_existsc(zoptions, "capath")) {
1325
+
phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENTTSRMLS_CC, "\"capath\" option is not supported by Secure Channel and Secure Transport");
0 commit comments