Skip to content

Commit

Permalink
Jfile
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Jun 29, 2018
1 parent 1d78403 commit f2a9a8c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -582,10 +582,10 @@ public function createRestorationFile($basename = null)
File::delete($configpath);
}

// Write new file. First try with \JFile.
// Write new file. First try with File.
$result = File::write($configpath, $data);

// In case \JFile used FTP but direct access could help.
// In case File used FTP but direct access could help.
if (!$result)
{
if (function_exists('file_put_contents'))
Expand Down

0 comments on commit f2a9a8c

Please sign in to comment.