diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-29 22:59:31 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-29 22:59:31 +0200 |
commit | aff11d7a790d5c67b712eb947c9642c32cbc6fdd (patch) | |
tree | a4a91ce47473df6ff46146512065c89a5f598cd0 /core/templates | |
parent | ddb32d42d298727918f4e704d7e61eae60afcd3c (diff) | |
parent | 8bc4a10dbe6235571ab8399bbcc41d2cfb9b89aa (diff) | |
download | nextcloud-server-aff11d7a790d5c67b712eb947c9642c32cbc6fdd.tar.gz nextcloud-server-aff11d7a790d5c67b712eb947c9642c32cbc6fdd.zip |
Merge pull request #17966 from owncloud/remove-mssql
Remove remainings of mssql
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index b686a1ca68c..8db55e4bdab 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -8,7 +8,6 @@ script('core', [ <input type='hidden' id='hasSQLite' value='<?php p($_['hasSQLite']) ?>'> <input type='hidden' id='hasPostgreSQL' value='<?php p($_['hasPostgreSQL']) ?>'> <input type='hidden' id='hasOracle' value='<?php p($_['hasOracle']) ?>'> -<input type='hidden' id='hasMSSQL' value='<?php p($_['hasMSSQL']) ?>'> <form action="index.php" method="post"> <input type="hidden" name="install" value="true"> <?php if(count($_['errors']) > 0): ?> @@ -79,7 +78,7 @@ script('core', [ <?php if(!$_['dbIsSet'] OR count($_['errors']) > 0): ?> <fieldset id='databaseBackend'> - <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle'] or $_['hasMSSQL']) + <?php if($_['hasMySQL'] or $_['hasPostgreSQL'] or $_['hasOracle']) $hasOtherDB = true; else $hasOtherDB =false; //other than SQLite ?> <legend><?php p($l->t( 'Configure the database' )); ?></legend> <div id="selectDbType"> |