put value assignment into brackets
This commit is contained in:
parent
d8137fdf66
commit
eabfd9b69b
1 changed files with 1 additions and 1 deletions
|
@ -516,7 +516,7 @@ class OC_Helper {
|
|||
$result = true;
|
||||
$count = 0;
|
||||
while(!feof($source)) {
|
||||
if ($c = fwrite($target, fread($source, 8192)) === false) {
|
||||
if ( ( $c = fwrite($target, fread($source, 8192)) ) === false) {
|
||||
$result = false;
|
||||
} else {
|
||||
$count += $c;
|
||||
|
|
Loading…
Reference in a new issue