Add a missing comma.

This commit is contained in:
markjcrane
2016-05-26 10:52:37 -06:00
parent 4c4a1bd15e
commit 213c612e14

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();