You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sm...@apache.org on 2016/10/28 20:04:53 UTC

[07/18] airavata-php-gateway git commit: AIRAVATA-2152 Add missing semicolons

AIRAVATA-2152 Add missing semicolons


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/95e34c21
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/95e34c21
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/95e34c21

Branch: refs/heads/develop
Commit: 95e34c21b22ec83dfd8dd6dc33c61c7610f47104
Parents: d7cffc6
Author: Marcus Christie <ma...@iu.edu>
Authored: Thu Oct 20 10:34:36 2016 -0400
Committer: Marcus Christie <ma...@iu.edu>
Committed: Fri Oct 28 15:04:30 2016 -0400

----------------------------------------------------------------------
 app/views/partials/user-compute-resource-preferences.blade.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/95e34c21/app/views/partials/user-compute-resource-preferences.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/user-compute-resource-preferences.blade.php b/app/views/partials/user-compute-resource-preferences.blade.php
index af0872e..531975d 100644
--- a/app/views/partials/user-compute-resource-preferences.blade.php
+++ b/app/views/partials/user-compute-resource-preferences.blade.php
@@ -85,11 +85,11 @@
 //to add or remove time according to local hours.
 $reservationStartTime = "";
 if( isset( $preferences) && $preferences->reservationStartTime != '')
-    $reservationStartTime = CommonUtilities::convertUTCToLocal($preferences->reservationStartTime/1000)
+    $reservationStartTime = CommonUtilities::convertUTCToLocal($preferences->reservationStartTime/1000);
 
 $reservationEndTime = "";
 if( isset( $preferences) && $preferences->reservationEndTime != '')
-    $reservationEndTime = CommonUtilities::convertUTCToLocal($preferences->reservationEndTime/1000)
+    $reservationEndTime = CommonUtilities::convertUTCToLocal($preferences->reservationEndTime/1000);
 
 ?>