Repository: cloudstack Updated Branches: refs/heads/4.4-forward 488903149 -> 9782970ef
CLOUDSTACK-6626: UI - fix a bug that g_userid was not declared. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/9782970e Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/9782970e Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/9782970e Branch: refs/heads/4.4-forward Commit: 9782970ef8fe0584d8bc0c5c5023d2cc5b9ed0c0 Parents: 4889031 Author: Jessica Wang <[email protected]> Authored: Fri May 9 13:18:28 2014 -0700 Committer: Jessica Wang <[email protected]> Committed: Fri May 9 13:18:43 2014 -0700 ---------------------------------------------------------------------- ui/scripts/sharedFunctions.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9782970e/ui/scripts/sharedFunctions.js ---------------------------------------------------------------------- diff --git a/ui/scripts/sharedFunctions.js b/ui/scripts/sharedFunctions.js index 4d4344e..2f7ef0a 100644 --- a/ui/scripts/sharedFunctions.js +++ b/ui/scripts/sharedFunctions.js @@ -18,6 +18,7 @@ var g_mySession = null; var g_sessionKey = null; var g_role = null; // roles - root, domain-admin, ro-admin, user var g_username = null; +var g_userid = null; var g_account = null; var g_domainid = null; var g_loginCmdText = null;
