diff options
author | Malf Furious <m@lfurio.us> | 2016-01-03 18:34:17 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-01-03 18:34:17 -0500 |
commit | 43ca317ea7d49396eb2958a38aed8b737ef4186b (patch) | |
tree | 4f5effe1a92591d0524d938c10174a3fbfd0c481 /app/model/sysconf.mod.php | |
parent | 03dd6556041ec11efe86f36d53db38c02d4362a7 (diff) | |
download | scrott-43ca317ea7d49396eb2958a38aed8b737ef4186b.tar.gz scrott-43ca317ea7d49396eb2958a38aed8b737ef4186b.zip |
* Bug fix in sysconf model - save action: problem with how the code is redirecting to the app root on success (needed to add a trailing shash character)
Diffstat (limited to 'app/model/sysconf.mod.php')
-rw-r--r-- | app/model/sysconf.mod.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/model/sysconf.mod.php b/app/model/sysconf.mod.php index 49e3b4d..fafc4d7 100644 --- a/app/model/sysconf.mod.php +++ b/app/model/sysconf.mod.php @@ -72,7 +72,7 @@ class SysconfModel extends MasterModel fwrite($f, "?>\n"); fclose($f); - $this->redirectTo($this->ar()); + $this->redirectTo($this->ar() . "/"); } } |