noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 06/28: PDFTK Convert in PDF if working from h


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 06/28: PDFTK Convert in PDF if working from home, see http://wiki.noalyss.eu/doku.php?id=menu:ancgl
Date: Sat, 30 Nov 2019 07:51:21 -0500 (EST)

sparkyx pushed a commit to branch master
in repository noalyss.

commit e8f235b935321523e52ba66e3c0b17e59a661902
Author: Dany De Bontridder <address@hidden>
Date:   Sun Nov 17 11:16:28 2019 +0100

    PDFTK Convert in PDF if working from home, see
    http://wiki.noalyss.eu/doku.php?id=menu:ancgl
---
 include/class/document_export.class.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/class/document_export.class.php 
b/include/class/document_export.class.php
index f491ab1..66d5382 100644
--- a/include/class/document_export.class.php
+++ b/include/class/document_export.class.php
@@ -38,8 +38,8 @@ class Document_Export
         // Create 2 temporary folders   1. convert to PDF + stamp
         //                              2. store result
         $this->feedback = array();
-        $this->store_convert = tempnam(sys_get_temp_dir(), 'convert_');
-        $this->store_pdf = tempnam(sys_get_temp_dir(), 'pdf_');
+        $this->store_convert = tempnam($_ENV['TMP'], 'convert_');
+        $this->store_pdf = tempnam($_ENV['TMP'], 'pdf_');
         unlink($this->store_convert);
         unlink($this->store_pdf);
         umask(0);
@@ -277,7 +277,7 @@ class Document_Export
 
         $progress->set_value(100);
         // remove files from "conversion folder"
-        $this->clean_folder();
+      //  $this->clean_folder();
         
     }
    /**



reply via email to

[Prev in Thread] Current Thread [Next in Thread]