mirror of https://github.com/itflow-org/itflow
Fix Custom Link Order to ASC instead of DESC as well
This commit is contained in:
parent
ab1c5ac631
commit
e37df8bf4b
|
|
@ -193,7 +193,7 @@
|
|||
|
||||
<?php
|
||||
$sql_custom_links = mysqli_query($mysqli, "SELECT * FROM custom_links WHERE custom_link_location = 1 AND custom_link_archived_at IS NULL
|
||||
ORDER BY custom_link_order DESC, custom_link_name ASC"
|
||||
ORDER BY custom_link_order ASC, custom_link_name ASC"
|
||||
);
|
||||
|
||||
while ($row = mysqli_fetch_array($sql_custom_links)) {
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<!--Custom Nav Link -->
|
||||
<?php
|
||||
$sql_custom_links = mysqli_query($mysqli, "SELECT * FROM custom_links WHERE custom_link_location = 2 AND custom_link_archived_at IS NULL
|
||||
ORDER BY custom_link_order DESC, custom_link_name ASC"
|
||||
ORDER BY custom_link_order ASC, custom_link_name ASC"
|
||||
);
|
||||
|
||||
while ($row = mysqli_fetch_array($sql_custom_links)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue