aboutsummaryrefslogtreecommitdiff
path: root/views/list
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2025-02-12 11:22:43 +0200
committerSyndamia <kamen@syndamia.com>2025-02-12 11:22:43 +0200
commit223a31224b9c140c9369358b6978c55ef289fde1 (patch)
treebdf9ad64e5c4d475cb7732d1c4e7b33f7d718e0d /views/list
parent62a6f96f42d3f799e5beded2407ca53295a803f2 (diff)
downloadnowayforward_human-223a31224b9c140c9369358b6978c55ef289fde1.tar
nowayforward_human-223a31224b9c140c9369358b6978c55ef289fde1.tar.gz
nowayforward_human-223a31224b9c140c9369358b6978c55ef289fde1.zip
hotfix: Replace environment variables with php global constants
Diffstat (limited to 'views/list')
-rw-r--r--views/list/export/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/views/list/export/index.php b/views/list/export/index.php
index fc8630b..e38be24 100644
--- a/views/list/export/index.php
+++ b/views/list/export/index.php
@@ -11,10 +11,11 @@
catch (Exception $e) {}
function createWithDOMPDF() {
+ global $ARCHIVES_DIR;
$url = $_GET['url'];
$title = $_GET['title'];
$wid = $_GET['wid'];
- $archive_dir = getenv('ARCHIVES_DIR') . '/' . $wid;
+ $archive_dir = $ARCHIVES_DIR . '/' . $wid;
$html = file_get_contents($archive_dir . '/index.php');
$dompdf = new Dompdf();