Ignore:
Timestamp:
2011/01/05 23:00:33 (13 years ago)
Author:
Seasoft
Message:

#714(パス指定によるリダイレクトの記述を簡潔にする) 共通処理実装、個別処理の一部を実装
#869(create_date, update_date 列の定義が、表やDBによるバラツキがある)

  • NOT NULL 制約により実装漏れに気づいたので修正

#893(SC_Response#reload を使うべきであろう箇所で SC_Response#sendRedirect を利用している)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/mail/LC_Page_Admin_Mail.php

    r19807 r19832  
    364364                    if (MELMAGA_SEND) { 
    365365                        if (MELMAGA_BATCH_MODE) { 
    366                             $this->objDisplay->redirect($this->getLocation(URL_PATH . ADMIN_DIR . 'mail/history.php')); 
     366                            $this->objDisplay->redirect('/' . ADMIN_DIR . 'mail/history.php'); 
    367367                        } else { 
    368                             $this->objDisplay->redirect($this->getLocation(URL_PATH . ADMIN_DIR . 'mail/sendmail.php', array('mode' => 'now', 'send_id' => $sendId))); 
     368                            $this->objDisplay->redirect('/' . ADMIN_DIR . 'mail/sendmail.php', array('mode' => 'now', 'send_id' => $sendId)); 
    369369                        } 
    370370                        exit; 
Note: See TracChangeset for help on using the changeset viewer.