Ignore:
Timestamp:
2007/10/17 15:15:28 (19 years ago)
Author:
nanasess
Message:

トラックバック修正

Location:
branches/feature-module-update/data/class/pages
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/tb/LC_Page_TrackBack.php

    r16472 r16475  
    120120 
    121121        // エラーチェック(トラックバックが成り立たないので、URL以外も必須とする) 
    122         $objPage->arrErr = $this->lfCheckError($objFormParam); 
     122        $this->arrErr = $this->lfCheckError($objFormParam); 
    123123 
    124124        // エラーがない場合はデータを更新 
    125         if(count($objPage->arrErr) == 0) { 
     125        if(count($this->arrErr) == 0) { 
    126126 
    127127            // 商品コードの取得(GET) 
     
    147147            } 
    148148        } 
     149        foreach($this->arrErr as $key => $val) { 
     150            GC_Utils_Ex::gfPrintLog( "\t" . $key . " => " . $val, $log_path); 
     151        } 
    149152        // NG 
    150153        $this->IfResponseNg(); 
     
    203206 
    204207        // スパムフィルター 
    205         if (lfSpamFilter($arrData)) { 
     208        if ($this->lfSpamFilter($arrData)) { 
    206209            $arrData["status"] = TRACKBACK_STATUS_NOT_VIEW; 
    207210        } else { 
Note: See TracChangeset for help on using the changeset viewer.