From 5805a819f238ae73f01f9dda8c1f6407ed5cb6b9 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Tue, 25 Jun 2013 14:29:55 +0200 Subject: [PATCH] Fixed undefined constant --- wcfsetup/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install.php b/wcfsetup/install.php index eb2f14e40a..f2d62bbc0d 100644 --- a/wcfsetup/install.php +++ b/wcfsetup/install.php @@ -272,7 +272,7 @@ class BasicFileUtil { return $path . '/'; } - $path = WCF_DIR.'tmp/'; + $path = INSTALL_SCRIPT_DIR.'tmp/'; if (@file_exists($path) && @is_writable($path)) { return $path; } -- 2.20.1