summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2016-01-03 18:34:17 -0500
committerMalf Furious <m@lfurio.us>2016-01-03 18:34:17 -0500
commit43ca317ea7d49396eb2958a38aed8b737ef4186b (patch)
tree4f5effe1a92591d0524d938c10174a3fbfd0c481 /app
parent03dd6556041ec11efe86f36d53db38c02d4362a7 (diff)
downloadscrott-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 '')
-rw-r--r--app/model/sysconf.mod.php2
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() . "/");
}
}