Changeset 16446


Ignore:
Timestamp:
2007/10/16 10:45:19 (16 years ago)
Author:
nanasess
Message:

未定義変数の修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/SC_View.php

    r16326 r16446  
    6363                $masterData = new SC_DB_MasterData_Ex(); 
    6464                $arrPref = $masterData->getMasterData("mtb_pref", array("pref_id", "pref_name", "rank")); 
    65                 $arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']]; 
     65                $arrInfo['arrSiteInfo']['pref'] = 
     66                    isset($arrPref[$arrInfo['arrSiteInfo']['pref']]) 
     67                    ? $arrPref[$arrInfo['arrSiteInfo']['pref']] : ""; 
    6668 
    6769                 // サイト情報を割り当てる 
Note: See TracChangeset for help on using the changeset viewer.