From 148d568b3db38ada9cf0c5085d2c71584d588598 Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Sun, 27 Oct 2013 01:43:30 +0000 Subject: Revert "Change function prototypes to pass self and use self.model instead of functions table" This reverts commit fb00ff8f05dae3c110beceb929ea036e4cd14ae1. Conflicts: provisioning-model.lua Conflict was resolved by removing "mymodule." from function calls that are once again made local --- config/determine_class.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'config/determine_class.lua') diff --git a/config/determine_class.lua b/config/determine_class.lua index 53a1884..675e6e8 100644 --- a/config/determine_class.lua +++ b/config/determine_class.lua @@ -1,7 +1,7 @@ -- This is the script run to determine the device class from the HTTP user agent -local self, agent, classes = ... +local functions, agent, classes = ... ---self.logevent("got to determine_class script") +--APP.logevent("got to determine_class script") local manufacture, model @@ -16,7 +16,7 @@ elseif string.match(agent, "snom") then model = string.match(agent, "snom(%d+)") end ---self.logevent("Found "..(manufacture or "").." model "..(model or "")) +--APP.logevent("Found "..(manufacture or "").." model "..(model or "")) if manufacture and model then for i,c in ipairs(classes.value) do -- cgit v1.2.3