summaryrefslogtreecommitdiff
path: root/php/footer.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/footer.php')
-rwxr-xr-xphp/footer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/php/footer.php b/php/footer.php
index 0d9c8b6..695b39f 100755
--- a/php/footer.php
+++ b/php/footer.php
@@ -17,7 +17,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-require_once PHP_DIR . 'replace.php';
+require_once ROOT . '/php/replace.php';
$year = date('Y');
@@ -25,7 +25,7 @@ $targets = [
'{{YEAR}}' => $year
];
-$html = replace(HTML_DIR . 'footer.html', $targets);
+$html = replace(ROOT . '/html/footer.html', $targets);
echo $html;
?>