shoppingmallv2 init..

This commit is contained in:
최준흠git config git config --helpgit config --global user.name 최준흠 2023-08-07 21:33:49 +09:00
parent a73e9c178f
commit a4f7b95601

View File

@ -210,6 +210,12 @@ abstract class BaseController extends Controller
foreach ($this->_viewDatas['fields'] as $field) {
$this->_viewDatas['fieldDatas'] = $this->getFieldFormData($field, $entity);
}
//변견된 데이터 Log로 남기기
foreach ($this->_viewDatas['fieldDatas'] as $field => $value) {
if ($field != "passwd") { //보안위험성이 있으므로 passwd는 Log에 남기지 않는다.
log_message("info", "{$field} : {$entity->$field} => {$value} 변경");
}
}
}
protected function update_process($entity)
{