Changeset 16257


Ignore:
Timestamp:
2007/10/05 01:20:10 (16 years ago)
Author:
adachi
Message:

fixed syntax error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/install/index.php

    r16256 r16257  
    384384            // ディレクトリの場合 
    385385            if(is_dir($val)) { 
    386                 if(!is_writable($val))) { 
     386                if(!is_writable($val)) { 
    387387                    $mess.= ">> ○:$real_path($mode) <br>アクセス権限は正常です。<br>"; 
    388388                } else { 
     
    391391                } 
    392392            } else { 
    393             if(!is_writable($val)) { 
     393            if(!is_writable($val)) { 
    394394                    $mess.= ">> ○:$real_path($mode) <br>アクセス権限は正常です。<br>"; 
    395395                } else { 
     
    430430            mkdir($path); 
    431431        } 
    432         $path = "../upload/mobile_image"; 
     432        $path = "../upload/mobile_image"; 
    433433        if(!file_exists($path)) { 
    434434            mkdir($path); 
     
    796796 
    797797    $data_path = sfRmDupSlash($root_dir . HTML2DATA_DIR); 
    798     $data_path = realpath($data_path); 
    799     // 語尾に'/'をつける 
     798    $data_path = realpath($data_path); 
     799    // 語尾に'/'をつける 
    800800    if (!ereg("/$", $data_path)) { 
    801801        $data_path = $data_path . "/"; 
     
    818818    "    define ('DB_PORT', '" . $objDBParam->getValue('db_port') .  "');\n" . 
    819819    "    define ('DATA_PATH', '".$data_path."');\n" . 
    820     "    define ('MOBILE_HTML_PATH', HTML_PATH . 'mobile/');\n" . 
    821     "    define ('MOBILE_SITE_URL', SITE_URL . 'mobile/');\n" . 
    822     "    define ('MOBILE_SSL_URL', SSL_URL . 'mobile/');\n" . 
    823     "    define ('MOBILE_URL_DIR', URL_DIR . 'mobile/');\n" . 
     820    "    define ('MOBILE_HTML_PATH', HTML_PATH . 'mobile/');\n" . 
     821    "    define ('MOBILE_SITE_URL', SITE_URL . 'mobile/');\n" . 
     822    "    define ('MOBILE_SSL_URL', SSL_URL . 'mobile/');\n" . 
     823    "    define ('MOBILE_URL_DIR', URL_DIR . 'mobile/');\n" . 
    824824    "?>"; 
    825825 
     
    863863// テーブルの追加(既にテーブルが存在する場合は作成しない) 
    864864function lfAddTable($table_name, $dsn) { 
    865     global $objPage; 
     865    global $objPage; 
    866866    $arrErr = array(); 
    867867    if(!sfTabaleExists($table_name, $dsn)) { 
     
    876876    } else { 
    877877        $objPage->tpl_message.="○:追加テーブル($table_name)が確認されました。<br>"; 
    878     } 
     878    } 
    879879 
    880880    return $arrErr; 
     
    960960    sfColumnExists("dtb_customer", "mailmaga_flg", "int2", $dsn, true); 
    961961 
    962     // インデックスの確認 
     962    // インデックスの確認 
    963963    if (!sfColumnExists("dtb_customer", "mobile_phone_id", "text", $dsn, true)) { 
    964964        // インデックスの追加 
Note: See TracChangeset for help on using the changeset viewer.