* Change the first letter of the function name from uppercase to lowercase..

This commit is contained in:
xieqiyu
2023-12-23 10:01:51 +08:00
parent 657078db1d
commit 2e41774523
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -6770,12 +6770,12 @@ class upgradeModel extends model
$this->loadModel('dataset');
$this->loadModel('dataview');
$this->upgradeTao->ConvertBuiltInDataSet();
$this->upgradeTao->convertBuiltInDataSet();
$customDataset = $this->dao->select('*')->from(TABLE_DATASET)->fetchAll('id');
if(empty($customDataset)) return true;
$this->upgradeTao->ConvertCustomDataSet($customDataset);
$this->upgradeTao->convertCustomDataSet($customDataset);
return true;
}