diff options
author | Ted Trask <ttrask01@yahoo.com> | 2013-10-29 02:26:45 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2013-10-29 02:26:45 +0000 |
commit | 7322419072402e8095d4bc8e9523375f33a89a4f (patch) | |
tree | d3d19d8a7749544cf36cddb5c251cb515bf3e9a3 /weblog-controller.lua | |
parent | 9e90326fc8bf264adeaa11d459e319dcf6526b9b (diff) | |
download | acf-weblog-7322419072402e8095d4bc8e9523375f33a89a4f.tar.bz2 acf-weblog-7322419072402e8095d4bc8e9523375f33a89a4f.tar.xz |
Add sourcename to viewweblog and ability to filter on sourcename
Also fix bug where boolean defaults were ignored in viewweblog, caused by using handle_clientdata
Diffstat (limited to 'weblog-controller.lua')
-rw-r--r-- | weblog-controller.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/weblog-controller.lua b/weblog-controller.lua index c3e47bd..54f3936 100644 --- a/weblog-controller.lua +++ b/weblog-controller.lua @@ -38,7 +38,6 @@ function mymodule.viewweblog(self) local retval = self.handle_form(self, self.model.getweblogparameters, self.model.getweblog, self.clientdata, "Update", "Display Weblog") -- We want to get the weblog even if form wasn't submitted if not self.clientdata.submit then - self.handle_clientdata(retval, self.clientdata) retval = self.model.getweblog(self, retval) end return retval |