Ignore:
Timestamp:
2013/06/24 10:43:03 (11 years ago)
Author:
m_uehara
Message:

#2127,#2130,#2220,#2260,#2270,#2274 のコミットを差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_CheckError.php

    r22874 r22876  
    11161116        $this->createParam($value); 
    11171117        $targetStr     = $this->arrParam[$value[1]]; 
    1118  
    11191118        $prohibitedStr = str_replace(array('|', '/'), array('\|', '\/'), $value[2]); 
    1120         $pattern = '/' . join('\b|\b', $prohibitedStr) . '\b/i'; 
    1121  
     1119 
     1120        $pattern = '/' . join('|', $prohibitedStr) . '/i'; 
    11221121        if (preg_match_all($pattern, $targetStr, $matches = array())) { 
    11231122            $this->arrErr[$value[1]] = '※ ' . $value[0] . 'は入力できません。<br />'; 
Note: See TracChangeset for help on using the changeset viewer.