diff options
| -rw-r--r-- | list_stock.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/list_stock.php b/list_stock.php index 850b024..ae76f51 100644 --- a/list_stock.php +++ b/list_stock.php @@ -172,8 +172,8 @@ if( $showShortages ) { // Assembly selector list $assembly = new StockAssembly(); -$listHash = [ 'show_empty' => true, 'sort_mode' => 'title_asc', 'max_records' => 500 ]; -$assemblyList = $assembly->getList( $listHash ); +$asmHash = [ 'show_empty' => true, 'sort_mode' => 'title_asc', 'max_records' => 500 ]; +$assemblyList = $assembly->getList( $asmHash ); // Load selected assembly title for display $assemblyTitle = ''; |
