avatar

18

debugging

by abloke, 01 Feb, 2007 04:13 PM
17 18  
4545     limit = (options.delete(:limit) || 10)
4646     conditions = build_sql_conditional_for(options)
4747     self.find(:all, :conditions => conditions, :limit => limit)
48   rescue
49     raise "I couldn't run the find with the options you gave me, sorry"
48   # rescue
49   #   raise "I couldn't run the find with the options you gave me, sorry"
5050   end
5151 
5252 private