Ignore:
Timestamp:
2012/08/05 02:48:22 (12 years ago)
Author:
Seasoft
Message:

#1912 (SC_SendMail#setHost SC_SendMail#setPort が保守されていない)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_SendMail.php

    r21983 r21987  
    114114    } 
    115115 
    116     // SMTPサーバーの設定 
     116    /** 
     117     * 前方互換用 
     118     * 
     119     * @deprecated 2.12.2 (#1912) 
     120     */ 
    117121    function setHost($host) { 
     122        trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING); 
    118123        $this->host = $host; 
    119124        $arrHost = array( 
     
    126131    } 
    127132 
    128     // SMTPポートの設定 
     133    /** 
     134     * 前方互換用 
     135     * 
     136     * @deprecated 2.12.2 (#1912) 
     137     */ 
    129138    function setPort($port) { 
     139        trigger_error('前方互換用メソッドが使用されました。', E_USER_WARNING); 
    130140        $this->port = $port; 
    131141        $arrHost = array( 
Note: See TracChangeset for help on using the changeset viewer.