Commit cdbe5509e1259fc8b1269ca453e7c90d91454e93

Authored by Isaac Lewis
1 parent e12f0c9d

default raw to false on combrw

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/syspro/business_objects/combrw.rb
... ... @@ -12,7 +12,7 @@ module Syspro
12 12 attr_accessor :browse_name, :start_at_key, :start_condition, :return_rows, :filters,
13 13 :table_name, :title, :columns
14 14  
15   - def call(user_id, raw)
  15 + def call(user_id, raw = false)
16 16 xml_in = template.result(binding)
17 17 params = { 'UserId' => user_id, 'XmlIn' => xml_in }
18 18 resp = ComBrw.browse(params)
... ...