diff --git a/include/limesurvey/admin/admin.php b/include/limesurvey/admin/admin.php
index f4fb9c6f..103eea80 100644
--- a/include/limesurvey/admin/admin.php
+++ b/include/limesurvey/admin/admin.php
@@ -325,11 +325,11 @@ if(isset($_SESSION['loginID']))
{
include('listcolumn.php');
}
- elseif ($action=='update')
- {
- if( $_SESSION['USER_RIGHT_SUPERADMIN'] == 1) include($homedir.'/update/updater.php');
- else { include('access_denied.php');}
- }
+// elseif ($action=='update')
+// {
+// if( $_SESSION['USER_RIGHT_SUPERADMIN'] == 1) include($homedir.'/update/updater.php');
+// else { include('access_denied.php');}
+// }
elseif ($action=='assessments' || $action=='assessmentdelete' || $action=='assessmentedit' || $action=='assessmentadd' || $action=='assessmentupdate')
{
if(bHasSurveyPermission($surveyid,'assessments','read')) {
diff --git a/include/limesurvey/common.php b/include/limesurvey/common.php
index 248f5cb5..206be404 100644
--- a/include/limesurvey/common.php
+++ b/include/limesurvey/common.php
@@ -260,38 +260,39 @@ if ($sourcefrom == "admin")
}
// Check if the DB is up to date
-If (!$dbexistsbutempty && $sourcefrom=='admin')
-{
- $usrow = getGlobalSetting('DBVersion');
- if (floatval($usrow)<$dbversionnumber)
- {
- $action='';
- require_once($rootdir.'/classes/core/language.php');
- $clang = new limesurvey_lang($defaultlang);
- include_once($homedir.'/update/updater.php');
- if(isset($_GET['continue']) && $_GET['continue']==1)
- {
- echo getAdminHeader();
- CheckForDBUpgrades();
- echo "
".$clang->gT("Back to main menu")."";
- //updatecheck();
- echo getAdminFooter("http://docs.limesurvey.org", $clang->gT("LimeSurvey online manual"));
- }
- else
- {
- echo getAdminHeader(),
- '
Congratulations
Your installation is now complete. The final step is to remove or rename the LimeSurvey installation directory (admin/install) on your server since it may be a security risk.
Once this directory has been removed or renamed you will be able to log in to your new LimeSurvey Installation.
Try again
Congratulations
Your installation is now complete. The final step is to remove or rename the LimeSurvey installation directory (admin/install) on your server since it may be a security risk.
Once this directory has been removed or renamed you will be able to log in to your new LimeSurvey Installation.
Try again