aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/global/router.php2
-rw-r--r--views/list/export/index.php3
2 files changed, 4 insertions, 1 deletions
diff --git a/views/global/router.php b/views/global/router.php
index ab3a0be..894af6b 100644
--- a/views/global/router.php
+++ b/views/global/router.php
@@ -1,5 +1,7 @@
<?php
+include __DIR__ . '/../../constants.php';
+
$VIEWS_DIR = __DIR__ . '/..';
$CONTROLLERS_DIR = __DIR__ . '/../../controllers';
$MODELS_DIR = __DIR__ . '/../../models';
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();