diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-03-30 23:40:29 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-03-30 23:41:54 +0200 |
commit | 71b70bb05f2c3a90a51d70c78c68332111400cf5 (patch) | |
tree | 51dbffe8669dc0ce9722e5d8c460fded84732563 /files | |
parent | 20fc23c82bbcaff56caafe6a6cc0ef15db9b2bf8 (diff) | |
download | nextcloud-server-71b70bb05f2c3a90a51d70c78c68332111400cf5.tar.gz nextcloud-server-71b70bb05f2c3a90a51d70c78c68332111400cf5.zip |
Fix HTML, misspelled span close tag
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index 418a170fecb..f591d066d8c 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -63,12 +63,12 @@ </div> <div id="scanning-message"> <h3> - <?php echo $l->t('Files are being scanned, please wait.');?> <span id='scan-count'></spann> + <?php echo $l->t('Files are being scanned, please wait.');?> <span id='scan-count'></span> </h3> <p> - <?php echo $l->t('Current scanning');?> <span id='scan-current'></spann> + <?php echo $l->t('Current scanning');?> <span id='scan-current'></span> </p> </div> <!-- config hints for javascript --> -<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php echo $_['allowZipDownload']; ?>" />
\ No newline at end of file +<input type="hidden" name="allowZipDownload" id="allowZipDownload" value="<?php echo $_['allowZipDownload']; ?>" /> |