diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-07-18 09:31:21 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-07-18 09:31:21 +0200 |
commit | 699b8a0b24ba5d948bf94b8006dc5249a622eae3 (patch) | |
tree | 1e6d674da81a406004a8442937b67e36e2957e85 | |
parent | 4bb1b5aebf56b2cf69230d1e557674419bc06eaa (diff) | |
download | rpg-699b8a0b24ba5d948bf94b8006dc5249a622eae3.tar.gz rpg-699b8a0b24ba5d948bf94b8006dc5249a622eae3.tar.bz2 |
fix asian word search FS#1188
darcs-hash:20070718073121-7ad00-60e45fb3913fa3745511c640a55aa1b7446a3657.gz
-rw-r--r-- | inc/indexer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/indexer.php b/inc/indexer.php index 2f03ad409..c2f7d6779 100644 --- a/inc/indexer.php +++ b/inc/indexer.php @@ -41,7 +41,7 @@ define('IDX_ASIAN3','['. // Hiragana/Katakana (can be two charact '\x{30C3}\x{30E3}\x{30E5}\x{30E7}\x{30EE}\x{30F5}\x{30F6}\x{30FB}\x{30FC}'. '\x{31F0}-\x{31FF}'. ']?'); - +define('IDX_ASIAN', '(?:'.IDX_ASIAN1.'|'.IDX_ASIAN2.'|'.IDX_ASIAN3.')'); /** * Measure the length of a string. |