diff --git a/htdocs/core/class/html.formother.class.php b/htdocs/core/class/html.formother.class.php
index 9556fd6c423..cf3cd58355c 100644
--- a/htdocs/core/class/html.formother.class.php
+++ b/htdocs/core/class/html.formother.class.php
@@ -75,7 +75,7 @@ class FormOther
$sql.= " FROM ".MAIN_DB_PREFIX."export_model";
$sql.= " WHERE type = '".$type."'";
if (!empty($fk_user)) $sql.=" AND fk_user IN (0, ".$fk_user.")"; // An export model
- $sql.= " ORDER BY rowid";
+ $sql.= " ORDER BY label";
$result = $this->db->query($sql);
if ($result)
{