  |
1 | 1 | | <?php |
| |
2 | 2 | | /* |
  |
3 | | - | $Id: payment.php 610 2006-07-05 11:04:24Z hpdl $ |
| |
| 3 | + | $Id: payment.php 757 2006-08-23 12:22:54Z hpdl $ |
|
4 | 4 | | |
| |
5 | 5 | | osCommerce, Open Source E-Commerce Solutions |
| |
6 | 6 | | http://www.oscommerce.com |
| |
|
|
 |
… |
|
51 | 51 | | |
| |
52 | 52 | | usort($this->_modules, array('osC_Payment', '_usortModules')); |
| |
53 | 53 | | |
  |
54 | | - | if ( (tep_not_null($module)) && (in_array($module, $this->_modules)) && (isset($GLOBALS['osC_Payment_' . $module]->form_action_url)) ) { |
| |
| 54 | + | if ( (!empty($module)) && (in_array($module, $this->_modules)) && (isset($GLOBALS['osC_Payment_' . $module]->form_action_url)) ) { |
  |
55 | 55 | | $this->form_action_url = $GLOBALS['osC_Payment_' . $module]->form_action_url; |
| |
56 | 56 | | } |
| |
57 | 57 | | } |