Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-08-06 10:22:12 +0300
committerAleksander Machniak <alec@alec.pl>2022-08-06 10:22:12 +0300
commitaac9b696b8435c34c542e47877a3644a16a6f4f2 (patch)
tree60e1d990b2d677d70d73fa29150e2f746edd07ba /program/include/rcmail.php
parent71a2bb3390aec4160e71dcc619fe8e59afab21ce (diff)
Fix various PHP 8.2 warnings
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 444670a31..f2ec6358b 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -48,12 +48,19 @@ class rcmail extends rcube
* @var string
*/
public $action = '';
+
public $comm_path = './';
public $filename = '';
public $default_skin;
public $login_error;
public $oauth;
+ /** @var ?string Temporary user email (set on user creation only) */
+ public $user_email;
+
+ /** @var ?string Temporary user password (set on user creation only) */
+ public $password;
+
private $address_books = [];
private $action_map = [];
private $action_args = [];