summaryrefslogtreecommitdiff
path: root/steloader.php
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-09-21 20:46:15 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-09-21 20:46:15 +0200
commitceb262e08027531717f1a16faafc343e8d9656e3 (patch)
tree87fdc916042efeebcacc1ef66dd99a969b8e4c4e /steloader.php
parentbf4d0598030b83be337bc505de842f7766009467 (diff)
downloadste-ceb262e08027531717f1a16faafc343e8d9656e3.tar.gz
ste-ceb262e08027531717f1a16faafc343e8d9656e3.tar.bz2
ste-ceb262e08027531717f1a16faafc343e8d9656e3.zip
Move to r7r namespace and r7r composer package vendor2.0.0
Let's face it, no one but my CMS Ratatöskr (r7r for short) uses this template engine anyway. Also it's a good excuse to get rid of more remnants of my old kch42 nickname.
Diffstat (limited to 'steloader.php')
-rw-r--r--steloader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/steloader.php b/steloader.php
index 5e490be..f878f6f 100644
--- a/steloader.php
+++ b/steloader.php
@@ -9,7 +9,7 @@
function autoload_ste($cl)
{
$path = explode("\\", $cl);
- if (($path[0] == "kch42") && ($path[1] == "ste")) {
+ if (($path[0] == "r7r") && ($path[1] == "ste")) {
require_once(__DIR__ . "/src/ste/" . $path[2] . ".php");
}
}