From 690bb8a8beb976d90042d92d2c8ccf365be90206 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 16 Feb 2015 14:45:21 -0700 Subject: [PATCH] Fix rcopy reference --- system/src/Grav/Console/Cli/SandboxCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Console/Cli/SandboxCommand.php b/system/src/Grav/Console/Cli/SandboxCommand.php index 2d36ba8c3..4d984d219 100644 --- a/system/src/Grav/Console/Cli/SandboxCommand.php +++ b/system/src/Grav/Console/Cli/SandboxCommand.php @@ -269,7 +269,7 @@ class SandboxCommand extends Command if (count($pages_files) == 0) { $destination = $this->source . '/user/pages'; - $this->rcopy($destination, $pages_dir); + Utils::rcopy($destination, $pages_dir); $this->output->writeln(' ' . $destination . ' -> Created'); }