summaryrefslogtreecommitdiffstats
path: root/www/cgi-bin
diff options
context:
space:
mode:
Diffstat (limited to 'www/cgi-bin')
-rwxr-xr-xwww/cgi-bin/mvc.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/www/cgi-bin/mvc.lua b/www/cgi-bin/mvc.lua
index 3a4b530..432b591 100755
--- a/www/cgi-bin/mvc.lua
+++ b/www/cgi-bin/mvc.lua
@@ -231,7 +231,9 @@ end
-- Cause a redirect to specified (or default) action
-- We use the self.conf table because it already has prefix,controller,etc
-- The actual redirection is defined in the application error handler (acf-controller)
-redirect = function (self, action)
+redirect = function (self, action, controller, prefix)
+ if prefix then self.conf.prefix = prefix end
+ if controller then self.conf.controller = controller end
if nil == action then
action = rawget(self.worker, "default_action") or ""
end