1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

Only try one method to get an XML file - return error if file_get_contents() fails

This commit is contained in:
e107steved 2011-10-02 17:16:16 +00:00
parent 3aec539d6f
commit c0bf513b8c

View File

@ -2,7 +2,7 @@
/*
* e107 website system
*
* Copyright (C) 2008-2010 e107 Inc (e107.org)
* Copyright (C) 2008-2011 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
@ -282,11 +282,13 @@ class xmlClass
{
e107_ini_set('default_socket_timeout', $old_timeout);
}
if ($data)
if ($data !== FALSE)
{
$this->xmlFileContents = $data;
return $data;
}
$this->error = "File_get_contents(XML) error"; // Fill in more info later
return FALSE;
}
if (function_exists("curl_init"))
{