Do not ignore return status of unlink

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3326 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2011-04-19 11:47:25 +00:00
parent 249b53ec7e
commit 47e8d6112a
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ function deletePath( $path )
}
else
{
@unlink( $path );
unlink( $path );
}
}