Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fix dashboard using wrong data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Jul 14, 2014
1 parent 30554c2 commit a788b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function getDasboard()
{
$return = array();
$return['Config Folder Writable'] = array(is_writable(LOCAL_CONFIGS_PATH));
$return['Data Folder Writable'] = array(is_writable(BASE_PATH.'/data'));
$return['Data Folder Writable'] = array(is_writable(UtilityComponent::getDataDirectory()));
// pass in empty string since we want to check the overall root temp directory
$return['Temporary Folder Writable'] = array(is_writable(UtilityComponent::getTempDirectory('')));

Expand Down

0 comments on commit a788b0f

Please sign in to comment.