summaryrefslogtreecommitdiff
path: root/includes/updater.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-01 20:08:17 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-01 20:08:17 +0000
commitfb300d1f967d17a10678582f46e82bd133d23aae (patch)
tree8a5aa158ce6669cce5116e2f1a7f3ece363886cc /includes/updater.inc
parentd62224dc56c59546a68ff2ecc1686f3cf59674a1 (diff)
downloadbrdo-fb300d1f967d17a10678582f46e82bd133d23aae.tar.gz
brdo-fb300d1f967d17a10678582f46e82bd133d23aae.tar.bz2
- Patch #895308 by Damien Tournoud: remove file_directory_path().
Diffstat (limited to 'includes/updater.inc')
-rw-r--r--includes/updater.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/updater.inc b/includes/updater.inc
index d7bef08a5..d86040c5b 100644
--- a/includes/updater.inc
+++ b/includes/updater.inc
@@ -368,7 +368,7 @@ class Updater {
* Return the full path to a directory where backups should be written.
*/
public function getBackupDir() {
- return file_directory_path('temporary');
+ return file_stream_wrapper_get_instance_by_scheme('temporary')->getDirectoryPath();
}
/**