summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-01-15 07:45:51 -0800
committerBart Visscher <bartv@thisnet.nl>2013-01-15 07:45:51 -0800
commit0da06187f6b1006db67b5d34281fd51a56054d21 (patch)
tree571aaa6707e225d40e42454f18783b719c684b4a /core
parentbb9cc227c2583adc6b51a1f6d75a9fc8333836b9 (diff)
parent42678096bb408f0955bb5c7f06e1e8b58088ea8b (diff)
downloadnextcloud-server-0da06187f6b1006db67b5d34281fd51a56054d21.tar.gz
nextcloud-server-0da06187f6b1006db67b5d34281fd51a56054d21.zip
Merge pull request #1187 from owncloud/fixing-unused-and-undefined-in-master
Fixing unused and undefined in master
Diffstat (limited to 'core')
-rw-r--r--core/templates/installation.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 3128c4f2e70..03c580c9b0b 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -1,7 +1,7 @@
-<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'></input>
-<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'></input>
-<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'></input>
-<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'></input>
+<input type='hidden' id='hasMySQL' value='<?php echo $_['hasMySQL'] ?>'>
+<input type='hidden' id='hasSQLite' value='<?php echo $_['hasSQLite'] ?>'>
+<input type='hidden' id='hasPostgreSQL' value='<?php echo $_['hasPostgreSQL'] ?>'>
+<input type='hidden' id='hasOracle' value='<?php echo $_['hasOracle'] ?>'>
<form action="index.php" method="post">
<input type="hidden" name="install" value="true" />
<?php if(count($_['errors']) > 0): ?>