diff options
Diffstat (limited to 'dwsim_flowsheet.module')
-rwxr-xr-x | dwsim_flowsheet.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dwsim_flowsheet.module b/dwsim_flowsheet.module index b31bb76..01e6c4a 100755 --- a/dwsim_flowsheet.module +++ b/dwsim_flowsheet.module @@ -670,7 +670,7 @@ function _df_list_of_dwsim_compound() $dwsim_compound = array(); $query = db_select('dwsim_flowsheet_compounds_from_dwsim'); $query->fields('dwsim_flowsheet_compounds_from_dwsim'); - $query->orderBy('compound', 'ASC'); + $query->orderBy('id', 'ASC'); $dwsim_compound_list = $query->execute(); while ($dwsim_compound_list_data = $dwsim_compound_list->fetchObject()) { |