From e06a6dda48cf4e466e6e080aa2bd5a7659ee512e Mon Sep 17 00:00:00 2001 From: Brayan Osmar Pereyra Suxo Date: Tue, 13 Nov 2012 10:25:55 -0400 Subject: [PATCH] BUG 9717 I add attribute USR_STATUS SOLVED I add attribute USR_STATUS --- workflow/engine/methods/authSources/authSources_ImportUsers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/methods/authSources/authSources_ImportUsers.php b/workflow/engine/methods/authSources/authSources_ImportUsers.php index d7706ece4..69f64ff3b 100755 --- a/workflow/engine/methods/authSources/authSources_ImportUsers.php +++ b/workflow/engine/methods/authSources/authSources_ImportUsers.php @@ -76,7 +76,7 @@ foreach ($_POST['aUsers'] as $sUser) { $evalValue = $aData[$value['attributeUser']]; $statusValue = 'INACTIVE'; - if (is_string($evalValue) && $evalValue == 'ACTIVE') { + if (is_string($evalValue) && G::toUpper($evalValue) == 'ACTIVE') { $statusValue = 'ACTIVE'; } if (is_bool($evalValue) && $evalValue == true) {