Ignore:
Timestamp:
2011/12/26 17:11:08 (12 years ago)
Author:
Seasoft
Message:

#1582 (SC_Query 一致レコードの有無を返す機能を追加 (パフォーマンス改善))
#1526 (typo修正・ソース整形・ソースコメントの改善)
#1449 (不要な関数・処理の整理)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/class/pages/admin/design/LC_Page_Admin_Design.php

    r20970 r21376  
    274274            $arrParams['anywhere'] = intval($objFormParam->getValue('anywhere_' . $i)); 
    275275            if ($arrParams['anywhere'] == 1) { 
    276                 $count = $objQuery->count('dtb_blocposition', 'anywhere = 1 AND bloc_id = ? AND device_type_id = ?', 
     276                $exists = $objQuery->exists('dtb_blocposition', 'anywhere = 1 AND bloc_id = ? AND device_type_id = ?', 
    277277                                          array($id, $device_type_id)); 
    278                 if ($count > 0) { 
     278                if ($exists) { 
    279279                    continue; 
    280280                } 
Note: See TracChangeset for help on using the changeset viewer.