Changeset 17215


Ignore:
Timestamp:
2008/04/04 20:05:54 (16 years ago)
Author:
satou
Message:

#266 【管理画面>受注管理>顧客マスタ】「顧客名」「顧客名(カナ)」検索について

File:
1 edited

Legend:

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

    r16987 r17215  
    146146                            $where .= " AND concat(order_name01,order_name02) ILIKE ?"; 
    147147                        } 
    148                         $nonsp_val = ereg_replace("[  ]+","",$val); 
     148                        $nonsp_val = mb_ereg_replace("[  ]+","",$val); 
    149149                        $arrval[] = "%$nonsp_val%"; 
    150150                        break; 
     
    155155                            $where .= " AND concat(order_kana01,order_kana02) ILIKE ?"; 
    156156                        } 
    157                         $nonsp_val = ereg_replace("[  ]+","",$val); 
     157                        $nonsp_val = mb_ereg_replace("[  ]+","",$val); 
    158158                        $arrval[] = "%$nonsp_val%"; 
    159159                        break; 
Note: See TracChangeset for help on using the changeset viewer.