From ca90e5ebf969c4c1c2b0c79b5873bc5f76a5ac8c Mon Sep 17 00:00:00 2001
From: "florian.azizian" <florian.azizian@maarch.org>
Date: Wed, 24 Jan 2018 22:50:57 +0100
Subject: [PATCH] FIX #27 update version only in superadmin

---
 .../admin/update_control/update_control.php              | 9 +++++----
 install/view/update_end_view.php                         | 4 ++--
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/apps/maarch_entreprise/admin/update_control/update_control.php b/apps/maarch_entreprise/admin/update_control/update_control.php
index fec960f51fc..6a8b59e104f 100755
--- a/apps/maarch_entreprise/admin/update_control/update_control.php
+++ b/apps/maarch_entreprise/admin/update_control/update_control.php
@@ -124,9 +124,6 @@ foreach ($tags as $key => $value) {
                     } ?>
                 </select>
                 <?php
-                if ($_SESSION['user']['UserId'] != 'superadmin') {
-                    echo _CONNECT_YOU_IN_SUPERADMIN;
-                }
             } else {
                 echo _NO_AVAILABLE_TAG_TO_UPDATE . '<br />';
             }
@@ -139,7 +136,11 @@ foreach ($tags as $key => $value) {
 <div align="center" style="margin-bottom:150px">
     <?php
         if ($isAnyAvailableTag && count($tags)>0) {
-            echo '<a style="margin-top:100px" href="'.$_SESSION['config']['coreurl'].'install/index.php?step=update_language"><input class="button" value="'._CLICK_HERE_TO_GO_TO_UPDATE_MANAGEMENT.'" type="button"></a>';
+            if ($_SESSION['user']['UserId'] != 'superadmin') {
+                echo _CONNECT_YOU_IN_SUPERADMIN;
+            } else {
+                echo '<a style="margin-top:100px" href="'.$_SESSION['config']['coreurl'].'install/index.php?step=update_language"><input class="button" value="'._CLICK_HERE_TO_GO_TO_UPDATE_MANAGEMENT.'" type="button"></a>';
+            }
         }
 
         if ($isAnyAvailableVersion) {
diff --git a/install/view/update_end_view.php b/install/view/update_end_view.php
index b15d26cd19f..73cd76731c1 100755
--- a/install/view/update_end_view.php
+++ b/install/view/update_end_view.php
@@ -39,11 +39,11 @@ if ($_SESSION['user']['UserId'] <> 'superadmin') {
     <div class="contentBlock" id="welcome">
         <p>
             <div id="buttons">
-                <div style="float: left;" class="previousButton" id="previous">
+<!--                 <div style="float: left;" class="previousButton" id="previous">
                     <a href="#" onClick="goTo('index.php?step=update_deploy');">
                         <?php echo _PREVIOUS_INSTALL;?>
                     </a>
-                </div>
+                </div> -->
                 <div style="float: right;" class="nextButton" id="start">
                     <a href="#" onClick="goTo('../index.php');">
                         <?php echo _START_MEP_1_3;?>
-- 
GitLab