Ignore:
Timestamp:
2007/10/29 12:06:29 (17 years ago)
Author:
nanasess
Message:

ライセンス表記変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/mobile/shopping/load_payment_module.php

    r16476 r16582  
    11<?php 
    2 /** 
    3  *  
     2/* 
     3 * This file is part of EC-CUBE 
     4 * 
    45 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. 
    56 * 
    67 * http://www.lockon.co.jp/ 
    7  *  
     8 * 
     9 * This program is free software; you can redistribute it and/or 
     10 * modify it under the terms of the GNU General Public License 
     11 * as published by the Free Software Foundation; either version 2 
     12 * of the License, or (at your option) any later version. 
     13 * 
     14 * This program is distributed in the hope that it will be useful, 
     15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17 * GNU General Public License for more details. 
     18 * 
     19 * You should have received a copy of the GNU General Public License 
     20 * along with this program; if not, write to the Free Software 
     21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
    822 */ 
    923require_once("../require.php"); 
     
    2337// 支払いIDが無い場合にはエラー 
    2438if($payment_id == ""){ 
    25     sfDispSiteError(PAGE_ERROR, "", true, "", true); 
     39    sfDispSiteError(PAGE_ERROR, "", true, "", true); 
    2640} 
    2741 
    2842// 決済情報を取得する 
    2943if(sfColumnExists("dtb_payment", "memo01")){ 
    30     $sql = "SELECT module_path, memo01, memo02, memo03, memo04, memo05, memo06, memo07, memo08, memo09, memo10 FROM dtb_payment WHERE payment_id = ?"; 
    31     $arrPayment = $objQuery->getall($sql, array($payment_id)); 
     44    $sql = "SELECT module_path, memo01, memo02, memo03, memo04, memo05, memo06, memo07, memo08, memo09, memo10 FROM dtb_payment WHERE payment_id = ?"; 
     45    $arrPayment = $objQuery->getall($sql, array($payment_id)); 
    3246} 
    3347 
    3448if(count($arrPayment) > 0) { 
    35     $path = $arrPayment[0]['module_path']; 
    36     if(file_exists($path)) { 
    37         require_once($path); 
    38         exit; 
    39     } else { 
    40         sfDispSiteError(FREE_ERROR_MSG, "", true, "モジュールファイルの取得に失敗しました。<br />この手続きは無効となりました。", true); 
    41     } 
     49    $path = $arrPayment[0]['module_path']; 
     50    if(file_exists($path)) { 
     51        require_once($path); 
     52        exit; 
     53    } else { 
     54        sfDispSiteError(FREE_ERROR_MSG, "", true, "モジュールファイルの取得に失敗しました。<br />この手続きは無効となりました。", true); 
     55    } 
    4256} 
    4357 
Note: See TracChangeset for help on using the changeset viewer.