mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Menu Edit - Item List: Fix count.
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
The Initial Developer of the Original Code is
|
||||
Mark J Crane <markjcrane@fusionpbx.com>
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2023
|
||||
Portions created by the Initial Developer are Copyright (C) 2008-2024
|
||||
the Initial Developer. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
@@ -425,7 +425,7 @@
|
||||
echo " }\n";
|
||||
|
||||
//update number of menu items
|
||||
echo " document.getElementById('num_rows').innerHTML = '".(!empty($x) ?: 0)."';\n";
|
||||
echo " document.getElementById('num_rows').innerHTML = '".(!empty($x) ? $x : 0)."';\n";
|
||||
|
||||
echo "</script>\n";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user