Changeset 6067 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/payment-request.php
- Timestamp:
- 11/01/2017 04:33:47 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/payment-request.php
r4967 r6067 865 865 case 'payment_amount': 866 866 $currency = get_post_meta( $post_id, '_camppayments_currency', true ); 867 if ( false === strpos( $currency, 'null' ) ) {867 if ( $currency && false === strpos( $currency, 'null' ) ) { 868 868 echo esc_html( $currency ) . ' '; 869 869 } … … 996 996 } 997 997 998 if ( 'null-select-one' === $currency) {998 if ( false !== strpos( $currency, 'null' ) ) { 999 999 $currency = ''; 1000 1000 }
Note: See TracChangeset
for help on using the changeset viewer.