Repository: airavata-php-gateway Updated Branches: refs/heads/develop 8ae298859 -> a176f62cb
fixing typos 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/a176f62c Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/a176f62c Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/a176f62c Branch: refs/heads/develop Commit: a176f62cb01f5b0c45bd8a82908bab32702e428c Parents: 8ae2988 Author: scnakandala <[email protected]> Authored: Mon May 2 14:52:33 2016 -0400 Committer: scnakandala <[email protected]> Committed: Mon May 2 14:52:33 2016 -0400 ---------------------------------------------------------------------- app/libraries/AdminUtilities.php | 2 +- app/libraries/CommonUtilities.php | 2 +- app/views/admin/manage-notices.blade.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/a176f62c/app/libraries/AdminUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/AdminUtilities.php b/app/libraries/AdminUtilities.php index 23994e0..b355c84 100644 --- a/app/libraries/AdminUtilities.php +++ b/app/libraries/AdminUtilities.php @@ -115,7 +115,7 @@ class AdminUtilities $notification = new Notification(); $notification->gatewayId = Session::get("gateway_id"); $notification->title = $notifData["title"]; - $notification->notifcationMessage = $notifData["notificationMessage"]; + $notification->notificationMessage = $notifData["notificationMessage"]; $notification->publishedtime = strtotime( $notifData["publishedtime"])* 1000; $notification->expirationTime = strtotime( $notifData["expirationTime"]) * 1000; http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/a176f62c/app/libraries/CommonUtilities.php ---------------------------------------------------------------------- diff --git a/app/libraries/CommonUtilities.php b/app/libraries/CommonUtilities.php index d5ce6c0..63bf5a5 100644 --- a/app/libraries/CommonUtilities.php +++ b/app/libraries/CommonUtilities.php @@ -251,7 +251,7 @@ class CommonUtilities $noticesUI .= ' <div class="notification"> <div class="notification-title text-primary">' . $notice->title . '</div> - <div class="notification-description"><strong></strong>' . $notice->notifcationMessage . '</div> + <div class="notification-description"><strong></strong>' . $notice->notificationMessage . '</div> <div class="notification-ago">' . date("m/d/Y h:i:s A T", $notice->publishedtime) . '</div> <div class="notification-icon"></div> </div> <!-- / .notification --> http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/a176f62c/app/views/admin/manage-notices.blade.php ---------------------------------------------------------------------- diff --git a/app/views/admin/manage-notices.blade.php b/app/views/admin/manage-notices.blade.php index 2c0a84d..4d24688 100644 --- a/app/views/admin/manage-notices.blade.php +++ b/app/views/admin/manage-notices.blade.php @@ -56,7 +56,7 @@ {{ $notice->title }} </td> <td> - {{ $notice->notifcationMessage}} + {{ $notice->notificationMessage}} </td> <td class="time" unix-time="{{ $notice->publishedtime/1000 }}"> {{ $notice->publishedtime }} @@ -349,7 +349,7 @@ function updateRow( noticeObject){ var row = "<td>" + noticeObject.title + "</td>" + - "<td>" + noticeObject.notifcationMessage + "</td>" + + "<td>" + noticeObject.notificationMessage + "</td>" + "<td class='date'>" + convertTimestamp( noticeObject.publishedtime) + "</td>" + "<td class='date' unix-time='" + convertTimestamp( noticeObject.expirationTime ) + "'</td>" + "<td></td>"+
