Updated whilst fixing numerous tickets.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3632 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
mullenm
2008-02-19 17:09:47 +00:00
parent 70c8f05f98
commit c9f7cc028d
2 changed files with 3 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ CREATE OR REPLACE PACKAGE mip_parties AS
p_prty_type IN VARCHAR2,
p_tripartite_member IN VARCHAR2,
p_password IN VARCHAR2,
p_expire_pword IN NUMBER);
p_expire_pword IN VARCHAR2);
--
/**
@@ -630,7 +630,7 @@ CREATE OR REPLACE PACKAGE BODY mip_parties AS
p_prty_type IN VARCHAR2,
p_tripartite_member IN VARCHAR2,
p_password IN VARCHAR2,
p_expire_pword IN NUMBER) IS
p_expire_pword IN VARCHAR2) IS
--
BEGIN
--
@@ -680,7 +680,7 @@ CREATE OR REPLACE PACKAGE BODY mip_parties AS
p_password => p_password);
-- set the user's status
IF p_expire_pword IS NOT NULL THEN
IF upper(p_expire_pword) = 'YES' THEN
mip_security.set_user_status(p_username => p_username,
p_status => 'EXPIRED');
ELSE

View File

@@ -131,7 +131,6 @@ CREATE OR REPLACE PACKAGE BODY mip_security AS
SET prty.status = upper(p_status)
WHERE upper(prty.username) = upper(p_username);
COMMIT;
END;
PROCEDURE update_status_on_login(p_uname IN VARCHAR2, p_password IN VARCHAR2) IS