Add a missing comma.

This commit is contained in:
markjcrane
2016-05-26 10:52:37 -06:00
parent 17bfd2eb35
commit 404ffaed8e

View File

@@ -392,7 +392,7 @@ function save_module_xml() {
$xml .= " <modules>\n";
$sql = "select * from v_modules ";
$sql .= "order by module_order ASC ";
$sql .= "order by module_order ASC, ";
$sql .= "module_category ASC";
$prep_statement = $db->prepare(check_sql($sql));
$prep_statement->execute();