summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6581858)
raw | patch | inline | side by side (parent: 6581858)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 7 May 2008 06:04:13 +0000 (06:04 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 7 May 2008 06:04:13 +0000 (06:04 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10796 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_socketClient.inc | patch | blob | history |
index 1cef298c7289818374fc2fec5eafa602c6662562..dda0f6ec200667dffc501507809ac265f34a9eba 100644 (file)
$this->handle = @fsockopen($this->host, $this->port, $this->errno, $this->errstr, $this->timeout);
if(!$this->handle){
$this->handle = NULL;
- $this->set_error( $this->errstr);
+ $this->set_error(sprintf(_("Socket connection to host '%s:%s' failed with error: %s."),$this->host,$this->port,$this->errstr));
}else{
$this->b_data_send = TRUE;