/[drupal]/contributions/modules/pay/includes/handlers/pay_form.inc
ViewVC logotype

Diff of /contributions/modules/pay/includes/handlers/pay_form.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.4, Thu Apr 30 19:18:07 2009 UTC revision 1.5, Fri May 1 03:01:38 2009 UTC
# Line 1  Line 1 
1  <?php // $Id: pay_form.inc,v 1.3 2009/04/28 03:32:01 vauxia Exp $  <?php // $Id: pay_form.inc,v 1.4 2009/04/30 19:18:07 vauxia Exp $
2    
3  /**  /**
4   * @file   * @file
# Line 129  class pay_form extends pay { Line 129  class pay_form extends pay {
129    
130      // Confirm that the amount falls within our min/max settings.      // Confirm that the amount falls within our min/max settings.
131      if (($total < $this->min_amount) || ($total > $this->max_amount) ) {      if (($total < $this->min_amount) || ($total > $this->max_amount) ) {
132        $total_error = t('Please enter an amount between %min and %max', array('%min' =>$this->min_amount, '%max' => $this->max_amount));        $error = t('Please enter an amount between %min and %max', array('%min' =>$this->min_amount, '%max' => $this->max_amount));
133        form_set_error('total', $error);        form_set_error('total', $error);
134      }      }
135    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

  ViewVC Help
Powered by ViewVC 1.1.2