diff --git a/modules/system/classes/VersionManager.php b/modules/system/classes/VersionManager.php index d00382f9a..ea124598a 100644 --- a/modules/system/classes/VersionManager.php +++ b/modules/system/classes/VersionManager.php @@ -390,7 +390,7 @@ class VersionManager return $this->databaseHistory[$code]; } - $historyInfo = Db::table('system_plugin_history')->where('code', $code)->orderBy('id','ASC')->get(); + $historyInfo = Db::table('system_plugin_history')->where('code', $code)->orderBy('id')->get(); return $this->databaseHistory[$code] = $historyInfo; }