Skip to content

Commit aff7548

Browse files
committed
fix: Show currency with symbol
1 parent 4d09413 commit aff7548

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

classes/Withdraw.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ public function tutor_make_an_withdraw() {
248248
wp_sprintf(
249249
/* translators: 1: total pending withdraw request 2: available for withdraw */
250250
__( "You have total %1\$s pending withdraw request. You can't make more than %2\$s withdraw request at a time", 'tutor' ),
251-
$earning_summary->total_pending,
252-
$earning_summary->available_for_withdraw
251+
tutor_utils()->tutor_price( $earning_summary->total_pending ),
252+
tutor_utils()->tutor_price( $earning_summary->available_for_withdraw )
253253
),
254254
);
255255
}

0 commit comments

Comments
 (0)