]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix libre/openoffice preview on multi-user instances
authorRealRancor <Fisch.666@gmx.de>
Thu, 12 Feb 2015 22:15:28 +0000 (23:15 +0100)
committerRealRancor <Fisch.666@gmx.de>
Thu, 12 Feb 2015 22:20:54 +0000 (23:20 +0100)
lib/private/preview/office-cl.php

index 6e4d4321eb7e4276d338a1e407803ef85dcb3a4b..f5c791e37f25e21d683d9f41c7df764ecbb9cc20 100644 (file)
@@ -29,13 +29,12 @@ if (!\OC_Util::runningOnWindows()) {
 
                        $tmpDir = get_temp_dir();
 
-                       $defaultParameters = ' --headless --nologo --nofirststartwizard --invisible --norestore -convert-to pdf -outdir ';
+                       $defaultParameters = ' -env:UserInstallation=file://' . escapeshellarg($tmpDir . '/owncloud-' . \OC_Util::getInstanceId().'/') . ' --headless --nologo --nofirststartwizard --invisible --norestore --convert-to pdf --outdir ';
                        $clParameters = \OCP\Config::getSystemValue('preview_office_cl_parameters', $defaultParameters);
 
                        $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath);
-                       $export = 'export HOME=/' . $tmpDir;
 
-                       shell_exec($export . "\n" . $exec);
+                       shell_exec($exec);
 
                        //create imagick object from pdf
                        try{