Index: trunk/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php |
— | — | @@ -256,7 +256,7 @@ |
257 | 257 | |
258 | 258 | // open form |
259 | 259 | $form .= Xml::openElement( 'div', array( 'id' => 'mw-creditcard-form' ) ) . |
260 | | - Xml::tags( 'p', array( 'class' => 'creditcard-error-msg' ), $error['retryMsg'] ) . |
| 260 | + Xml::element( 'p', array( 'class' => 'creditcard-error-msg' ), $error['retryMsg'] ) . |
261 | 261 | Xml::openElement( 'form', array( 'name' => 'payment', 'method' => 'post', 'action' => '', 'onsubmit' => 'return validate_form(this)', 'autocomplete' => 'off' ) ); |
262 | 262 | |
263 | 263 | // donor amount and name |
— | — | @@ -792,6 +792,7 @@ |
793 | 793 | //enable if we need this to get the Civi data to display correctly |
794 | 794 | $transaction['optout'] = ($transaction['optout'] == "1") ? '0' : '1'; |
795 | 795 | $transaction['anonymous'] = ($transaction['anonymous'] == "1") ? '0' : '1'; |
| 796 | + |
796 | 797 | // hook to call stomp functions |
797 | 798 | wfRunHooks( 'gwStomp', array( &$transaction ) ); |
798 | 799 | } |