Dodano sortowanie form dostawy oraz zaktualizowano wersję na 0.224

This commit is contained in:
2024-11-24 21:33:58 +01:00
parent 42210bad4b
commit 6470a77719
6 changed files with 12 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ class ShopTransport
. 'FROM '
. 'pp_shop_transports AS pst '
. 'WHERE '
. 'status = 1' ) -> fetchAll( \PDO::FETCH_ASSOC );
. 'status = 1 ORDER BY o ASC' ) -> fetchAll( \PDO::FETCH_ASSOC );
if ( is_array( $results ) and !empty( $results ) ) foreach ( $results as $row )
$transports_tmp[] = $row;