From 74cd43acdab91246edf4acaf5f646eed2063f39e Mon Sep 17 00:00:00 2001 From: Zach LeBar Date: Tue, 3 Apr 2012 15:53:28 +0000 Subject: Fixing acf-clamav to work with changes made to acf-core. Removing the use of controllerfunctions.lua and using the new 'handle_form()' found in acf_www-controller.lua. Also using 'handle_form()' in place of 'redirect_to_referrer()'. --- clamav-model.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'clamav-model.lua') diff --git a/clamav-model.lua b/clamav-model.lua index 6735e1b..20d1885 100644 --- a/clamav-model.lua +++ b/clamav-model.lua @@ -18,8 +18,12 @@ local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin -- ################################################################################ -- PUBLIC FUNCTIONS -function startstop_service(action) - return modelfunctions.startstop_service(processname, action) +function get_startstop(clientdata) + return modelfunctions.get_startstop(processname) +end + +function startstop_service(startstop, action) + return modelfunctions.startstop_service(startstop, action) end function getstatus() @@ -43,8 +47,8 @@ function getfilelist() return cfe({ type="list", value=listed_files, label="ClamAV File List" }) end -function getfiledetails(filename) - return modelfunctions.getfiledetails(filename, filelist) +function getfiledetails(clientdata) + return modelfunctions.getfiledetails(clientdata.filename, filelist) end function updatefiledetails(filedetails) -- cgit v1.2.3