summaryrefslogtreecommitdiff
path: root/steloader.php
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
commitbfd4763b4f831ed9eccbdd4717c98b7d95999d2e (patch)
tree73538562b347386a24e3b81f443a0b61309fe3de /steloader.php
parent2464ac4fa63ccd169f36849a1f7372191066f305 (diff)
downloadste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.gz
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.bz2
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.zip
Some simple code formatting
- Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags
Diffstat (limited to 'steloader.php')
-rw-r--r--steloader.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/steloader.php b/steloader.php
index 5797b51..8c4c36f 100644
--- a/steloader.php
+++ b/steloader.php
@@ -7,10 +7,10 @@
*/
function autoload_ste($cl) {
- $path = explode("\\", $cl);
- if(($path[0] == "kch42") && ($path[1] == "ste")) {
- require_once(__DIR__ . "/src/ste/" . $path[2] . ".php");
- }
+ $path = explode("\\", $cl);
+ if(($path[0] == "kch42") && ($path[1] == "ste")) {
+ require_once(__DIR__ . "/src/ste/" . $path[2] . ".php");
+ }
}
spl_autoload_register("autoload_ste");