Commit:    8fdf38b32eef9efea1a3081a74013fcd950e1765
Author:    kovacs.ferenc <[email protected]>         Fri, 25 Jul 2014 
12:07:13 +0200
Parents:   e784c67ef9debcdbf27952f489622bee9c325bd5
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=8fdf38b32eef9efea1a3081a74013fcd950e1765

Log:
there is no reason to silence the error, we don't show it anyways

Changed paths:
  M  include/posttohost.inc


Diff:
diff --git a/include/posttohost.inc b/include/posttohost.inc
index 1e37d5b..56cd323 100644
--- a/include/posttohost.inc
+++ b/include/posttohost.inc
@@ -20,7 +20,7 @@ function posttohost($url, $data)
 
     $ctx = stream_context_create(array('http' => $opts));
 
-    $response_body = @file_get_contents($url, false, $ctx);
+    $response_body = file_get_contents($url, false, $ctx);
 
     return $response_body;
 }


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to