webmcp

annotate framework/env/execute/finalizers.lua @ 253:8f028a0aa114

Bug in request.get_param_strings{...} fixed, which caused request._http_request.post_params to be corrupted
author jbe
date Sun Mar 01 22:56:06 2015 +0100 (2015-03-01)
parents 2c2bcde0df79
children 2ddbb44680f7
rev   line source
jbe@208 1 --[[--
jbe@208 2 execute.finalizers()
jbe@208 3
jbe@208 4 Executes that code in initializers which is placed after execute.inner().
jbe@208 5
jbe@208 6 --]]--
jbe@208 7
jbe@208 8 function execute.finalizers()
jbe@208 9 for i = #execute._finalizers, 1, -1 do
jbe@208 10 execute._finalizers[i]()
jbe@208 11 execute._finalizers[i] = 0
jbe@208 12 end
jbe@208 13 end

Impressum / About Us