Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

PHP 8.2 compatibility Dynamic Properties #2215

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion rainloop/v/0.0.0/app/libraries/MailSo/Imap/ImapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2215,7 +2215,6 @@ private function partialParseResponseBranch(&$oImapResponse,
else
{
$iBufferEndIndex = \strlen($this->sResponseBuffer) - 3;
$this->bResponseBufferChanged = false;

if ($iPos > $iBufferEndIndex)
{
Expand Down
5 changes: 5 additions & 0 deletions rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ class Actions
* @var string
*/
private $sUpdateAuthToken;

/**
* @var bool
*/
private $bIsAjax;

/**
* @access private
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public function __construct(\RainLoop\Actions $oActions)
$this->aTemplates = array();
$this->aAdminTemplates = array();

$this->aAjaxFilters = array();
$this->aAdditionalAjax = array();
$this->aProcessTemplate = array();

Expand Down