Fixed not setting flag 141 in rimo-import

This commit is contained in:
Frank Schubert
2025-08-20 16:28:12 +02:00
parent 5d4b6a6d04
commit 73cf1098a5
8 changed files with 128 additions and 80 deletions

View File

@@ -28,11 +28,14 @@ class mfBaseModel {
protected $table = false;
protected $fieldprefix = false;
protected $_ruid;
/**
* Takes ID or DB row as arguments
* @param id or table row $_
*/
public function __construct($_ = NULL, $new_db_connection = false) {
$this->_ruid = substr(hash("sha256", random_bytes(32)), 0, 8);
$this->log = mfLoghandler::singleton();
$this->table = get_class($this);
$this->data = new stdClass();