Skip to content
Snippets Groups Projects

[RTFixed] [TestsIP] hotline#194779: fix put patron route erase informations in Koha

Merged Arthur Suzuki requested to merge hotline#194779_fix_koha_info_deleted into master
Compare and Show latest version
1 file
+ 1
1
Preferences
Compare changes
@@ -53,7 +53,7 @@ class Class_HttpClientFactory {
public function newHttpClient( $config = []): Zend_Http_Client
{
return ( $this->_last_client && $this->_last_client instanceof self )
return ( $this->_last_client && $this->_last_client instanceof HttpClientForTest )
? $this->_last_client
: $this->_setClient(new Zend_Http_Client, $config);
}