@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | |
13 | 13 | var $is_searchable = true; |
14 | 14 | |
15 | - var $search_operators = array( 'is', 'in', 'not in', 'isnot' ); |
|
15 | + var $search_operators = array('is', 'in', 'not in', 'isnot'); |
|
16 | 16 | |
17 | 17 | var $group = 'pricing'; |
18 | 18 | |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * GravityView_Field_Date_Created constructor. |
23 | 23 | */ |
24 | 24 | public function __construct() { |
25 | - $this->label = esc_attr__( 'Payment Status', 'gravityview' ); |
|
25 | + $this->label = esc_attr__('Payment Status', 'gravityview'); |
|
26 | 26 | parent::__construct(); |
27 | 27 | } |
28 | 28 | } |
@@ -9,6 +9,6 @@ |
||
9 | 9 | |
10 | 10 | $entry = GravityView_View::getInstance()->getCurrentEntry(); |
11 | 11 | |
12 | -$value = rgar( $entry, 'payment_amount' ); |
|
12 | +$value = rgar($entry, 'payment_amount'); |
|
13 | 13 | |
14 | -echo GFCommon::to_money( $value, rgar( $entry, 'currency' ) ); |
|
14 | +echo GFCommon::to_money($value, rgar($entry, 'currency')); |