Skip to content

Commit

Permalink
MDL-30381 Fixed path to the cache directory in installers
Browse files Browse the repository at this point in the history
This fixes the patch f848c0f introduced
in MDL-29351.
  • Loading branch information
mudrd8mz committed Nov 21, 2011
1 parent fe41ba7 commit 12812ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/cli/install.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
$CFG->httpswwwroot = $CFG->wwwroot; $CFG->httpswwwroot = $CFG->wwwroot;
$CFG->dataroot = str_replace('\\', '/', dirname(dirname(dirname(dirname(__FILE__)))).'/moodledata'); $CFG->dataroot = str_replace('\\', '/', dirname(dirname(dirname(dirname(__FILE__)))).'/moodledata');
$CFG->tempdir = $CFG->dataroot.'/temp'; $CFG->tempdir = $CFG->dataroot.'/temp';
$CFG->cachedir = $CFG->dataroot.'/temp'; $CFG->cachedir = $CFG->dataroot.'/cache';
$CFG->docroot = 'http://docs.moodle.org'; $CFG->docroot = 'http://docs.moodle.org';
$CFG->running_installer = true; $CFG->running_installer = true;
$CFG->early_install_lang = true; $CFG->early_install_lang = true;
Expand Down
2 changes: 1 addition & 1 deletion install.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
$CFG->httpswwwroot = $CFG->wwwroot; $CFG->httpswwwroot = $CFG->wwwroot;
$CFG->dataroot = $config->dataroot; $CFG->dataroot = $config->dataroot;
$CFG->tempdir = $CFG->dataroot.'/temp'; $CFG->tempdir = $CFG->dataroot.'/temp';
$CFG->cachedir = $CFG->dataroot.'/temp'; $CFG->cachedir = $CFG->dataroot.'/cache';
$CFG->admin = $config->admin; $CFG->admin = $config->admin;
$CFG->docroot = 'http://docs.moodle.org'; $CFG->docroot = 'http://docs.moodle.org';
$CFG->langotherroot = $CFG->dataroot.'/lang'; $CFG->langotherroot = $CFG->dataroot.'/lang';
Expand Down

0 comments on commit 12812ad

Please sign in to comment.