取消对关键词的大写转换处理

This commit is contained in:
wlx 2010-06-27 17:49:46 +00:00
parent f415972e1d
commit 4efac45799
1 changed files with 2 additions and 1 deletions

View File

@ -763,7 +763,8 @@ class Admin_DataController extends Zend_Controller_Action
$row=$keyt->createRow();
$row->id=$id;
//统一转换为大写
$row->keyword=strtoupper($key);
//不再统一转换
$row->keyword=$key;
$row->keytype=$keytype;
$row->save();
}