Changeset 16320


Ignore:
Timestamp:
2007/10/07 01:19:34 (16 years ago)
Author:
nanasess
Message:

画像のパス修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php

    r16319 r16320  
    5252 
    5353        $fp = fopen(ZIP_CSV_FILE_PATH, "r"); 
     54        $img_path = USER_URL . "templates/" . TEMPLATE_NAME . "/img/"; 
    5455 
    5556        // 一部のIEは256バイト以上受け取ってから表示を開始する。 
     
    6364            SC_Utils_Ex::sfErrorHeader(">> " . ZIP_CSV_FILE_PATH . "の取得に失敗しました。"); 
    6465        } else { 
    65             print("<img src='".TEMPLATE_DIR."img/install/main_w.jpg'><br>"); 
     66            print("<img src='". $img_path . "install/main_w.jpg'><br>"); 
    6667            $this->myFlush(); 
    6768 
     
    7374            } 
    7475 
    75             print("<img src='".TEMPLATE_DIR."img/install/space_w.gif'>"); 
     76            print("<img src='". $img_path ."install/space_w.gif'>"); 
    7677            $this->myFlush(); 
    7778 
     
    112113                // $disp_line件ごとに進捗表示する 
    113114                if($cnt % $disp_line == 0 && $img_cnt < IMAGE_MAX) { 
    114                     print("<img src='".TEMPLATE_DIR."img/install/graph_1_w.gif'>"); 
     115                    print("<img src='". $img_path ."install/graph_1_w.gif'>"); 
    115116                    $this->myFlush(); 
    116117                    $img_cnt++; 
     
    119120            fclose($fp); 
    120121 
    121             print("<img src='".TEMPLATE_DIR."img/install/space_w.gif'><br>\n"); 
     122            print("<img src='". $img_path ."install/space_w.gif'><br>\n"); 
    122123            print("<table width='700' height='50' border='0' cellpadding='0' cellspacing='0' bgcolor='#494E5F'>\n"); 
    123124            print("<tr>\n"); 
    124             print("<td align='center'><a href='javascript:window.close()'><img src='".TEMPLATE_DIR."img/install/close.gif' alt='CLOSE' width='85' height='22' border='0' /></a></td>\n"); 
     125            print("<td align='center'><a href='javascript:window.close()'><img src='". $img_path ."install/close.gif' alt='CLOSE' width='85' height='22' border='0' /></a></td>\n"); 
    125126            print("</tr>\n"); 
    126127            print("</table>\n"); 
Note: See TracChangeset for help on using the changeset viewer.