Skip to content

Commit

Permalink
Forgot to rename method and remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Skouat committed Jul 2, 2023
1 parent ad5a463 commit 503268c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions actions/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,6 @@ private function get_count_result($config_name): int

public function is_donor_is_member(): void
{
$anonymous_user = false;

if ($this->is_donor_anonymous())
{
$this->donor_is_member = $this->check_donor_status_based_on_email($this->transaction_data['payer_email']);
Expand Down
6 changes: 3 additions & 3 deletions controller/admin/transactions_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ private function get_logs($count_logs = true, $limit = 0, $offset = 0, $log_time
}
}

return $this->ppde_operator->build_log_ary($get_logs_sql_ary, $url_ary, $limit, $this->last_page_offset);
return $this->ppde_operator->build_log_entries($get_logs_sql_ary, $url_ary, $limit, $this->last_page_offset);
}

/**
Expand Down Expand Up @@ -649,7 +649,7 @@ private function mc_fee_negative($data): array
}

/**
* Tests if mc_fee is to high
* Tests if mc_fee is too high
*
* @param array $data
*
Expand Down Expand Up @@ -749,7 +749,7 @@ private function get_payment_time_examples(): array
public function view(): void
{
// Request Identifier of the transaction
$transaction_id = $this->request->variable('id', 0);
$transaction_id = (int) $this->request->variable('id', 0);

// add additional fields to the table schema needed by entity->import()
$additional_table_schema = [
Expand Down

0 comments on commit 503268c

Please sign in to comment.