[-] CORE : file_put_contents() returns the number of bytes that were written to the file, or FALSE on failure.

This commit is contained in:
gRoussac
2013-02-06 19:21:23 +01:00
parent a7588f5cc0
commit 5e98812e19
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ class InstallSimplexmlElement extends SimpleXMLElement
$dom->loadXML(parent::asXML());
if ($filename)
return file_put_contents($filename, $dom->saveXML());
return (bool)file_put_contents($filename, $dom->saveXML());
return $dom->saveXML();
}
}