Do not be so drastic on normal failure.

This commit is contained in:
Ermal 2011-03-02 00:23:44 +00:00
parent dcc897e5b3
commit cf46a14f95

View File

@ -19,7 +19,7 @@
$handle = fopen($file, 'w');
if(!$handle) {
upnp_warn("Could not open {$file} for writing.");
exit;
return;
}
fwrite($handle, $text);
fclose($handle);