make use of OC_User::getHome in files_external app

This commit is contained in:
Georg Ehrke 2012-09-04 15:51:19 +02:00
parent 7901fc33a8
commit 745f279fbc
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ class OC_Mount_Config {
*/
private static function readData($isPersonal) {
if ($isPersonal) {
$file = OC::$SERVERROOT.'/data/'.OCP\User::getUser().'/mount.php';
$file = OC_User::getHome(OCP\User::getUser()).'/mount.php';
} else {
$file = OC::$SERVERROOT.'/config/mount.php';
}
@ -206,7 +206,7 @@ class OC_Mount_Config {
*/
private static function writeData($isPersonal, $data) {
if ($isPersonal) {
$file = OC::$SERVERROOT.'/data/'.OCP\User::getUser().'/mount.php';
$file = OC_User::getHome(OCP\User::getUser()).'/mount.php';
} else {
$file = OC::$SERVERROOT.'/config/mount.php';
}