diff options
| -rwxr-xr-x | src/globals.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.php b/src/globals.php index 5f66881..7d8586d 100755 --- a/src/globals.php +++ b/src/globals.php @@ -126,7 +126,7 @@ function revertupdatebocafile($dirboca, $t) { } else { if(is_file($dirboca) && substr($dirboca, 0, strlen('old.' . $t . '.')) == 'old.' . $t . '.') { @chmod($dirboca, 0600); - if(@copy($dirboca, substr($dirboca, strlen('old.' . $t . '.' .))) === true) $ok=1; + if(@copy($dirboca, substr($dirboca, strlen('old.' . $t . '.'))) === true) $ok=1; @chmod($dirboca, 0000); } } |