Skip to content

Commit

Permalink
- php 8.3.3 bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
softcoder committed Mar 19, 2024
1 parent 4f1bc12 commit dad85d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions php/email_polling.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ public function imap_close($imap_stream, $flag = null) {
return \imap_close($imap_stream, $flag ?? 0);
}

public function imap_fetchstructure($imap_stream, $msg_number, $options = null) {
public function imap_fetchstructure($imap_stream, $msg_number, $options = 0) {
return \imap_fetchstructure($imap_stream, $msg_number, $options);
}

public function imap_fetchbody($imap_stream, $msg_number, $section, $options = null) {
return \imap_fetchbody($imap_stream, $msg_number, $section, $options);
}

public function imap_body($imap_stream, $msg_number, $options = null) {
public function imap_body($imap_stream, $msg_number, $options = 0) {
return \imap_body($imap_stream, $msg_number, $options);
}

Expand Down
1 change: 1 addition & 0 deletions php/models/callout-audit-model.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class CalloutAuditViewModel extends BaseViewModel {

private $callout_details;
private $callout_cols;
private $callout_details_list;
private $callout_details_responding_list;
private $user_authenticated;

Expand Down
1 change: 1 addition & 0 deletions php/models/callout-details-model.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class CalloutDetailsViewModel extends BaseViewModel {
private $callout_details_responding_list;
private $callout_details_not_responding_list;
private $callout_details_end_responding_list;
private $useracctid;
private $user_authenticated;

protected function getVarContainerName() {
Expand Down

0 comments on commit dad85d2

Please sign in to comment.