From 4bc6fd0eb9a79074dedd0c28620de068273bc6d6 Mon Sep 17 00:00:00 2001 From: bfederle Date: Mon, 9 Jan 2012 10:44:07 -0800 Subject: [PATCH] Explicitly show all account, domain listings for admin --- ui/scripts/accounts.js | 2 +- ui/scripts/domains.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/scripts/accounts.js b/ui/scripts/accounts.js index 79204919f07..7ffcf1a49f3 100644 --- a/ui/scripts/accounts.js +++ b/ui/scripts/accounts.js @@ -199,7 +199,7 @@ if("domains" in args.context) array1.push("&domainid=" + args.context.domains[0].id); $.ajax({ - url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("")), + url: createURL("listAccounts" + "&page=" + args.page + "&pagesize=" + pageSize + array1.join("") + '&listAll=true'), dataType: "json", async: true, success: function(json) { diff --git a/ui/scripts/domains.js b/ui/scripts/domains.js index c1ab5a3e199..b3ceafbdbbc 100644 --- a/ui/scripts/domains.js +++ b/ui/scripts/domains.js @@ -317,7 +317,7 @@ var parentDomain = args.context.parentDomain; if(parentDomain == null) { //draw root node $.ajax({ - url: createURL("listDomains&id=" + g_domainid), + url: createURL("listDomains&id=" + g_domainid + '&listAll=true'), dataType: "json", async: false, success: function(json) {