Mercurial > hg > rc2
comparison program/lib/Roundcube/rcube_message_header.php @ 27:c32b53434b47
more compensation for deprecated empty cases
| author | Charlie Root |
|---|---|
| date | Sun, 18 Jan 2026 14:20:29 -0500 |
| parents | 303b85d5b561 |
| children |
comparison
equal
deleted
inserted
replaced
| 25:bea5a38be938 | 27:c32b53434b47 |
|---|---|
| 68 * Message additional recipients (Cc) | 68 * Message additional recipients (Cc) |
| 69 * | 69 * |
| 70 * @var string | 70 * @var string |
| 71 */ | 71 */ |
| 72 public $cc; | 72 public $cc; |
| 73 | |
| 74 /** | |
| 75 * Message hidden recipients (Bcc) | |
| 76 * | |
| 77 * @var string | |
| 78 */ | |
| 79 public $bcc; | |
| 73 | 80 |
| 74 /** | 81 /** |
| 75 * Message Reply-To header | 82 * Message Reply-To header |
| 76 * | 83 * |
| 77 * @var string | 84 * @var string |
| 308 if (in_array('thunderbird_labels', | 315 if (in_array('thunderbird_labels', |
| 309 (rcube::get_instance()->config->get('plugins')))) | 316 (rcube::get_instance()->config->get('plugins')))) |
| 310 { | 317 { |
| 311 class rcube_message_header extends r_m_h_base { | 318 class rcube_message_header extends r_m_h_base { |
| 312 public $list_flags = array(); | 319 public $list_flags = array(); |
| 320 public $sortKey = null; | |
| 313 } | 321 } |
| 314 } else { | 322 } else { |
| 315 class rcube_message_header extends r_m_h_base { } | 323 class rcube_message_header extends r_m_h_base { } |
| 316 } | 324 } |
| 317 | 325 |
