Changeset 2686 for temp


Ignore:
Timestamp:
2006/08/29 14:21:00 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/class/SC_SelectSql.php

    r2158 r2686  
    7676        // ³«»Ï´ü´Ö¤À¤±»ØÄê¤Î¾ì¹ç 
    7777        if( ( $from_year != "" ) && ( $from_month != "" ) && ( $from_day != "" ) && ( $to_year == "" ) && ( $to_month == "" ) && ( $to_day == "" ) ) { 
    78             $this->setWhere( $column ." >= " . $date1 ); 
     78            $this->setWhere( $column ." >= '" . $date1 . "'"); 
    7979        } 
    8080 
     
    8282        if( ( $from_year != "" ) && ( $from_month != "" ) && ( $from_day != "" ) &&  
    8383            ( $to_year != "" ) && ( $to_month != "" ) && ( $to_day != "" ) ) { 
    84             $this->setWhere( $column ." >= " . $date1 ." AND ". $column . " < date('" . $date2 . "')+1" ); 
     84            $this->setWhere( $column ." >= '" . $date1 ."' AND ". $column . " < date('" . $date2 . "')+1" ); 
    8585        } 
    8686 
  • temp/trunk/html/admin/mail/inc_mailmagazine.php

    r1893 r2686  
    2727$arrCustomerType = array( 
    2828                        1 => "²ñ°÷", 
    29                         2 => "¥á¥ë¥Þ¥¬ÅÐÏ¿", 
     29                        2 => "Èó²ñ°÷", 
    3030                        //3 => "CSVÅÐÏ¿" 
    3131                        ); 
  • temp/trunk/html/admin/mail/index.php

    r2144 r2686  
    110110        $linemax = $objQuery->count($from, $where, $arrval); 
    111111        $objPage->tpl_linemax = $linemax;               // ²¿·ï¤¬³ºÅö¤·¤Þ¤·¤¿¡£É½¼¨ÍÑ 
     112         
     113        $objQuery->getlastquery(true); 
    112114 
    113115        // ¥Ú¡¼¥¸Á÷¤ê¤Î¼èÆÀ 
Note: See TracChangeset for help on using the changeset viewer.