Changeset 3490


Ignore:
Timestamp:
2006/08/31 16:42:10 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/lib/slib.php

    r3446 r3490  
    6868 
    6969// Áõ¾þÉÕ¤­¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤Îɽ¼¨ 
    70 function sfErrorHeader($mess) { 
     70function sfErrorHeader($mess, $print = false) { 
    7171    global $GLOBAL_ERR; 
    7272    if($GLOBAL_ERR == "") { 
     
    7979    $GLOBAL_ERR.= "</td>\n"; 
    8080    $GLOBAL_ERR.= " </tr>\n"; 
    81     $GLOBAL_ERR.= "</table>\n";  
     81    $GLOBAL_ERR.= "</table>\n"; 
     82     
     83    if($print) { 
     84        print($GLOBAL_ERR); 
     85    } 
    8286} 
    8387 
  • temp/trunk/html/install/index.php

    r3486 r3490  
    1919 
    2020if($mode != '777') { 
    21     sfErrorHeader($temp_dir . "¤Ë¥æ¡¼¥¶½ñ¹þ¤ß¸¢¸Â(777)¤òÉÕÍ¿¤·¤Æ²¼¤µ¤¤¡£"); 
     21    sfErrorHeader($temp_dir . "¤Ë¥æ¡¼¥¶½ñ¹þ¤ß¸¢¸Â(777)¤òÉÕÍ¿¤·¤Æ²¼¤µ¤¤¡£", true); 
    2222    exit; 
    2323} 
Note: See TracChangeset for help on using the changeset viewer.