Fixed saving edit_by in some Controllers
This commit is contained in:
@@ -2,8 +2,18 @@
|
||||
|
||||
class Producttech extends mfBaseModel {
|
||||
private $attributes;
|
||||
|
||||
public function getProperty($name) {
|
||||
|
||||
protected function beforeUpdate($data) {
|
||||
if(!array_key_exists("edit_by", $data)) {
|
||||
$me = new User();
|
||||
$me->loadMe();
|
||||
$data["edit_by"] = $me->id;
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function getProperty($name) {
|
||||
if($this->$name == null) {
|
||||
|
||||
if($name == "attributes") {
|
||||
|
||||
Reference in New Issue
Block a user