You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/08/09 14:50:27 UTC

[28/50] airavata-php-gateway git commit: AIRAVATA-2405 Changed warning message

AIRAVATA-2405 Changed warning message


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/5f302457
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/5f302457
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/5f302457

Branch: refs/heads/dreg-gateway
Commit: 5f30245746cac7a8dde16037450a7f60e74cdb34
Parents: 2af5283
Author: Marcus Christie <ma...@iu.edu>
Authored: Sat Jul 8 22:43:13 2017 -0500
Committer: Marcus Christie <ma...@iu.edu>
Committed: Sat Jul 8 22:43:13 2017 -0500

----------------------------------------------------------------------
 app/controllers/AdminController.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/5f302457/app/controllers/AdminController.php
----------------------------------------------------------------------
diff --git a/app/controllers/AdminController.php b/app/controllers/AdminController.php
index 91fa3b9..69ddd91 100644
--- a/app/controllers/AdminController.php
+++ b/app/controllers/AdminController.php
@@ -73,7 +73,9 @@ class AdminController extends BaseController {
 	public function usersView(){
 		if( Input::has("role"))
 		{
-			Session::flash("warning-message", "Please note: the following list may not be complete. Only the most recent 100 users who have role " . htmlspecialchars(Input::get("role")) . " are listed.");
+			Session::flash("warning-message", "Please note: the following list "
+			. "may not be complete. Only the most recent 100 users have been "
+			. "searched for role " . htmlspecialchars(Input::get("role")) . ".");
 			$users = IamAdminServicesUtilities::getUsersWithRole(Input::get("role"));
 		}
 		else