Authored by ccbikai

Merge branch 'develop' of http://git.dev.yoho.cn/web/yohobuy into develop

@@ -182,7 +182,7 @@ class UserData @@ -182,7 +182,7 @@ class UserData
182 * @param int $suggest_type 意见类型 182 * @param int $suggest_type 意见类型
183 * @return array 意见反馈接口返回的数据 183 * @return array 意见反馈接口返回的数据
184 */ 184 */
185 - public static function suggestData($uid, $content, $suggest_type, $limit = 30) 185 + public static function savesuggestData($uid, $content, $suggest_type, $limit = 30)
186 { 186 {
187 $param = Yohobuy::param(); 187 $param = Yohobuy::param();
188 $param['uid'] = $uid; 188 $param['uid'] = $uid;
@@ -204,7 +204,7 @@ class UserModel @@ -204,7 +204,7 @@ class UserModel
204 $result = array(); 204 $result = array();
205 205
206 // 调用接口保存意见反馈数据 206 // 调用接口保存意见反馈数据
207 - return UserData::suggestData($uid, $content, $suggest_type); 207 + return UserData::savesuggestData($uid, $content, $suggest_type);
208 } 208 }
209 209
210 } 210 }