[Mapbender-commits] r1190 - trunk/mapbender/http/classes
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Tue Mar 6 03:54:49 EST 2007
Author: christoph
Date: 2007-03-06 03:54:49 -0500 (Tue, 06 Mar 2007)
New Revision: 1190
Modified:
trunk/mapbender/http/classes/class_connector.php
Log:
prevented error messages from file_get_contents; they sabotaged the JS error alerts
Modified: trunk/mapbender/http/classes/class_connector.php
===================================================================
--- trunk/mapbender/http/classes/class_connector.php 2007-03-06 08:51:54 UTC (rev 1189)
+++ trunk/mapbender/http/classes/class_connector.php 2007-03-06 08:54:49 UTC (rev 1190)
@@ -56,7 +56,7 @@
return $file;
}
function getHTTP($url){
- return file_get_contents($url);
+ return @file_get_contents($url);
}
function getSOCKET($url){
$r = "";
More information about the Mapbender_commits
mailing list