mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Compilation fix
This commit is contained in:
parent
36deb7c6cb
commit
c6063a4ca3
3 changed files with 7 additions and 9 deletions
|
|
@ -611,7 +611,7 @@ print [[
|
|||
var icon_input = $("select", icon).first();
|
||||
curDisplayedMembers++;
|
||||
$("#addPoolMemberBtn").attr("disabled", ((curDisplayedMembers > ]] print(perPageMembers) print[[)
|
||||
|| (]] print(not ntop.isEnterprise()) print[[ && numPoolMembers >= ]] print(host_pools_utils.LIMITED_NUMBER_POOL_MEMBERS.."") print[[)));
|
||||
|| (numPoolMembers >= ]] print(host_pools_utils.LIMITED_NUMBER_POOL_MEMBERS.."") print[[)));
|
||||
|
||||
aysRecheckForm("#table-manage-form");
|
||||
}
|
||||
|
|
@ -798,7 +798,7 @@ print[[
|
|||
|| (no_pools))
|
||||
|| (]] if members_filtering ~= nil then print("true") else print("false") end print[[)
|
||||
|| (curDisplayedMembers > ]] print(perPageMembers) print[[)
|
||||
|| (]] print(not ntop.isEnterprise()) print[[ && numPoolMembers >= ]] print(host_pools_utils.LIMITED_NUMBER_POOL_MEMBERS.."") print[[));
|
||||
|| (numPoolMembers >= ]] print(host_pools_utils.LIMITED_NUMBER_POOL_MEMBERS.."") print[[));
|
||||
|
||||
$("#table-manage-form")
|
||||
.validator(validator_options)
|
||||
|
|
@ -867,7 +867,7 @@ print [[
|
|||
<script>
|
||||
var nextPoolId = 1;
|
||||
var numPools = 0;
|
||||
var maxPoolNum = ]] print(ternary(ntop.isEnterprise(), tostring(host_pools_utils.MAX_NUM_POOLS), tostring(host_pools_utils.LIMITED_NUMBER_USER_HOST_POOLS))) print[[;
|
||||
var maxPoolNum = ]] print(tostring(host_pools_utils.LIMITED_NUMBER_USER_HOST_POOLS)) print[[;
|
||||
|
||||
function deletePool(pool_id) {
|
||||
var params = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue