Changeset 16475 for branches/feature-module-update/data/class
- Timestamp:
- 2007/10/17 15:15:28 (19 years ago)
- Location:
- branches/feature-module-update/data/class/pages
- Files:
-
- 1 added
- 1 edited
-
admin/products/LC_Page_Admin_Products_TrackbackEdit.php (added)
-
tb/LC_Page_TrackBack.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/tb/LC_Page_TrackBack.php
r16472 r16475 120 120 121 121 // エラーチェック(トラックバックが成り立たないので、URL以外も必須とする) 122 $ objPage->arrErr = $this->lfCheckError($objFormParam);122 $this->arrErr = $this->lfCheckError($objFormParam); 123 123 124 124 // エラーがない場合はデータを更新 125 if(count($ objPage->arrErr) == 0) {125 if(count($this->arrErr) == 0) { 126 126 127 127 // 商品コードの取得(GET) … … 147 147 } 148 148 } 149 foreach($this->arrErr as $key => $val) { 150 GC_Utils_Ex::gfPrintLog( "\t" . $key . " => " . $val, $log_path); 151 } 149 152 // NG 150 153 $this->IfResponseNg(); … … 203 206 204 207 // スパムフィルター 205 if ( lfSpamFilter($arrData)) {208 if ($this->lfSpamFilter($arrData)) { 206 209 $arrData["status"] = TRACKBACK_STATUS_NOT_VIEW; 207 210 } else {
Note: See TracChangeset
for help on using the changeset viewer.
