Ignore:
Timestamp:
Mar 31, 2010, 6:32:40 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Aktualizace fóra.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/forum/includes/acp/acp_email.php

    r400 r702  
    33*
    44* @package acp
    5 * @version $Id: acp_email.php 8479 2008-03-29 00:22:48Z naderman $
     5* @version $Id$
    66* @copyright (c) 2005 phpBB Group
    77* @license http://opensource.org/licenses/gpl-license.php GNU Public License
     
    109109                                        trigger_error($user->lang['NO_USER'] . adm_back_link($this->u_action), E_USER_WARNING);
    110110                                }
    111        
     111
    112112                                $i = $j = 0;
    113113
     
    122122                                        if (($row['user_notify_type'] == NOTIFY_EMAIL && $row['user_email']) ||
    123123                                                ($row['user_notify_type'] == NOTIFY_IM && $row['user_jabber']) ||
    124                                                 ($row['user_notify_type'] == NOTIFY_BOTH && $row['user_email'] && $row['user_jabber']))
     124                                                ($row['user_notify_type'] == NOTIFY_BOTH && ($row['user_email'] || $row['user_jabber'])))
    125125                                        {
    126126                                                if ($i == $max_chunk_size || $row['user_lang'] != $old_lang || $row['user_notify_type'] != $old_notify_type)
     
    174174                                        $messenger->headers('X-AntiAbuse: Username - ' . $user->data['username']);
    175175                                        $messenger->headers('X-AntiAbuse: User IP - ' . $user->ip);
    176                        
     176
    177177                                        $messenger->subject(htmlspecialchars_decode($subject));
    178178                                        $messenger->set_mail_priority($priority);
     
    182182                                                'MESSAGE'               => htmlspecialchars_decode($message))
    183183                                        );
    184        
     184
    185185                                        if (!($messenger->send($used_method)))
    186186                                        {
     
    240240                $select_list = '<option value="0"' . ((!$group_id) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_USERS'] . '</option>';
    241241                $select_list .= group_select_options($group_id, $exclude);
    242                
     242
    243243                $s_priority_options = '<option value="' . MAIL_LOW_PRIORITY . '">' . $user->lang['MAIL_LOW_PRIORITY'] . '</option>';
    244244                $s_priority_options .= '<option value="' . MAIL_NORMAL_PRIORITY . '" selected="selected">' . $user->lang['MAIL_NORMAL_PRIORITY'] . '</option>';
Note: See TracChangeset for help on using the changeset viewer.