From bfd4763b4f831ed9eccbdd4717c98b7d95999d2e Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Sun, 26 Apr 2020 16:48:01 +0200 Subject: Some simple code formatting - Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags --- steloader.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'steloader.php') 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"); -- cgit v1.2.3-54-g00ecf