Ignore:
Timestamp:
2014/06/03 15:58:18 (10 years ago)
Author:
shutta
Message:

#2448 typo修正・ソース整形・ソースコメントの改善 for 2.13.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/helper/SC_Helper_Delivery.php

    r23250 r23513  
    146146                    if (count($curData)) { 
    147147                        $objQuery->update($table, $deliv_time, $where, $arrWhereVal); 
    148                     } 
    149148                    // DBに情報がなければ登録 
    150                     else { 
     149                    } else { 
    151150                        $deliv_time['deliv_id'] = $deliv_id; 
    152151                        $deliv_time['time_id'] = $cnt; 
    153152                        $objQuery->insert($table, $deliv_time); 
    154153                    } 
    155                 } 
    156154                // 入力が空で、DBに情報がある場合は削除 
    157                 elseif (count($curData)) { 
     155                } elseif (count($curData)) { 
    158156                    $objQuery->delete($table, $where, $arrWhereVal); 
    159157                } 
Note: See TracChangeset for help on using the changeset viewer.