1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Tue, 12 Nov 2019 22:54:28 -1000
Subject: Install data in /u/s/php/data/
Forwarded: not-needed
---
src/pinky.php | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pinky.php b/src/pinky.php
index 4da8550..7011872 100644
--- a/src/pinky.php
+++ b/src/pinky.php
@@ -23,10 +23,10 @@ function createInkyProcessor()
}
$general = new DOMDocument();
- $general->load(__DIR__ . "/inky.xsl");
+ $general->load(__DIR__ . "/../data/Pinky/inky.xsl");
$centering = new DOMDocument();
- $centering->load(__DIR__ . "/inky-center.xsl");
+ $centering->load(__DIR__ . "/../data/Pinky/inky-center.xsl");
$security = \XSL_SECPREF_READ_FILE | \XSL_SECPREF_READ_NETWORK | \XSL_SECPREF_DEFAULT;
$centerProcessor = new XSLTProcessor();
|