diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-30 16:05:20 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-30 16:05:20 -0800 |
commit | 10e208ea5c1a98d509a520a5bd2cbd407ae2268a (patch) | |
tree | 3c3179856f5ebab5cd758793de91e77515eed39b /modules/digibug/controllers | |
parent | a161436015364a039107e767f8c4af91dbec89ed (diff) |
Fix #992: Digibug pops up a blank page and doesn't allow printing
form::hidden() changed in K24 breaking this. Also fixed the spelling
of "$order_params"
Diffstat (limited to 'modules/digibug/controllers')
-rw-r--r-- | modules/digibug/controllers/digibug.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/digibug/controllers/digibug.php b/modules/digibug/controllers/digibug.php index 6e6009db..e3b06196 100644 --- a/modules/digibug/controllers/digibug.php +++ b/modules/digibug/controllers/digibug.php @@ -36,7 +36,7 @@ class Digibug_Controller extends Controller { } $v = new View("digibug_form.html"); - $v->order_parms = array( + $v->order_params = array( "digibug_api_version" => "100", "company_id" => module::get_var("digibug", "company_id"), "event_id" => module::get_var("digibug", "event_id"), |