Ignore:
Timestamp:
2008/10/23 11:03:49 (18 years ago)
Author:
takegami
Message:

#366修正

Location:
branches/version-2/data/class/pages/admin
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/pages/admin/LC_Page_Admin_Login.php

    r16741 r17653  
    7373            // 成功 
    7474            $this->sendRedirect($this->getLocation(URL_HOME)); 
     75            exit; 
    7576        } else { 
    7677            // エラーページの表示 
  • branches/version-2/data/class/pages/admin/contents/LC_Page_Admin_Contents_Campaign.php

    r17494 r17653  
    9696                // キャンペーンTOPへリダイレクト 
    9797                $this->sendRedirect($this->getLocation(URL_CAMPAIGN_TOP)); 
     98                exit; 
    9899            } 
    99100 
     
    111112            // キャンペーンTOPへリダイレクト 
    112113            $this->sendRedirect($this->getLocation(URL_CAMPAIGN_TOP)); 
     114            exit; 
    113115            break; 
    114116            // CSV出力 
  • branches/version-2/data/class/pages/admin/contents/LC_Page_Admin_Contents_CampaignDesign.php

    r16582 r17653  
    7777        if($arrForm['campaign_id'] == "" || $arrForm['status'] == "") { 
    7878            $this->sendRedirect($this->getLocation(URL_CAMPAIGN_TOP)); 
     79            exit; 
    7980        } 
    8081 
     
    125126            // 登録ページへ戻る 
    126127            $this->sendRedirect($this->getLocation(URL_CAMPAIGN_TOP)); 
     128            exit; 
    127129            break; 
    128130        default: 
  • branches/version-2/data/class/pages/admin/contents/LC_Page_Admin_Contents_CampaignPreview.php

    r16582 r17653  
    5858        if($_GET['campaign_id'] == "" || $_GET['status'] == "") { 
    5959            $this->sendRedirect($this->getLocation(URL_CAMPAIGN_TOP)); 
     60            exit; 
    6061        } 
    6162 
  • branches/version-2/data/class/pages/admin/contents/LC_Page_Admin_Contents_CsvSql.php

    r17343 r17653  
    120120        case "new_page": 
    121121            $this->sendRedirect($this->getLocation("./csv_sql.php")); 
     122            exit; 
    122123            break; 
    123124 
     
    126127            $this->lfDelData($sql_id); 
    127128            $this->sendRedirect($this->getLocation("./csv_sql.php")); 
     129            exit; 
    128130            break; 
    129131 
  • branches/version-2/data/class/pages/admin/contents/LC_Page_Admin_Contents_FileView.php

    r16750 r17653  
    8282        } else { 
    8383            $this->sendRedirect(USER_URL . $_GET['file']); 
     84            exit; 
    8485        } 
    8586    } 
  • branches/version-2/data/class/pages/admin/design/LC_Page_Admin_Design.php

    r16935 r17653  
    109109        if ($_POST['mode'] == 'new_bloc') { 
    110110            $this->sendRedirect($this->getLocation("./bloc.php")); 
     111            exit; 
    111112        } 
    112113 
     
    114115        if ($_POST['mode'] == 'new_page') { 
    115116            $this->sendRedirect($this->getLocation("./main_edit.php")); 
     117            exit; 
    116118        } 
    117119 
     
    193195                if ($page_id === "") { 
    194196                    $this->sendRedirect($this->getLocation("./index.php")); 
     197                    exit; 
    195198                } 
    196199                $this->lfSetPreData($arrPageData, $objLayout); 
     
    199202 
    200203                $this->sendRedirect($this->getLocation(URL_DIR . "preview/index.php", array("filename" => $arrPageData[0]["filename"]))); 
     204                exit; 
    201205 
    202206            }else{ 
     
    204208                                            array("page_id" => $page_id, 
    205209                                                  "msg" => "on"))); 
     210                exit; 
    206211 
    207212            } 
     
    212217            $objLayout->lfDelPageData($page_id); 
    213218            $this->sendRedirect($this->getLocation("./index.php")); 
     219            exit; 
    214220        } 
    215221 
  • branches/version-2/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php

    r16730 r17653  
    154154                                            array("bloc_id" => $bloc_id, 
    155155                                                  "msg" => "on"))); 
     156                exit; 
    156157            }else{ 
    157158                // エラーがあれば入力時のデータを表示する 
     
    189190            } 
    190191            $this->sendRedirect($this->getLocation("./bloc.php")); 
     192            exit; 
    191193            break; 
    192194        default: 
  • branches/version-2/data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php

    r16741 r17653  
    174174            $_SESSION['preview'] = "ON"; 
    175175            $this->sendRedirect($this->getLocation(URL_DIR . "preview/index.php", array("filename" => $arrPageData[0]["filename"]))); 
     176            exit; 
    176177        } 
    177178 
     
    210211                                        array("page_id" => $page_id, 
    211212                                              "msg"     => "on"))); 
     213                exit; 
    212214            }else{ 
    213215                // エラーがあれば入力時のデータを表示する 
     
    224226            $this->objLayout->lfDelPageData($_POST['page_id']); 
    225227            $this->sendRedirect($this->getLocation("./main_edit.php")); 
     228            exit; 
    226229        } 
    227230 
Note: See TracChangeset for help on using the changeset viewer.