Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A6B93200CCE for ; Sun, 9 Jul 2017 05:43:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9B74F16B736; Sun, 9 Jul 2017 03:43:32 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E0E1816B72F for ; Sun, 9 Jul 2017 05:43:31 +0200 (CEST) Received: (qmail 70691 invoked by uid 500); 9 Jul 2017 03:43:30 -0000 Mailing-List: contact commits-help@airavata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airavata.apache.org Delivered-To: mailing list commits@airavata.apache.org Received: (qmail 70682 invoked by uid 99); 9 Jul 2017 03:43:30 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Jul 2017 03:43:30 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7CF0FE0A98; Sun, 9 Jul 2017 03:43:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: machristie@apache.org To: commits@airavata.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: airavata-php-gateway git commit: AIRAVATA-2405 Changed warning message Date: Sun, 9 Jul 2017 03:43:29 +0000 (UTC) archived-at: Sun, 09 Jul 2017 03:43:32 -0000 Repository: airavata-php-gateway Updated Branches: refs/heads/develop 2af52834f -> 5f3024574 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/develop Commit: 5f30245746cac7a8dde16037450a7f60e74cdb34 Parents: 2af5283 Author: Marcus Christie Authored: Sat Jul 8 22:43:13 2017 -0500 Committer: Marcus Christie 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