diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-04 15:04:26 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-02-04 15:04:26 +0100 |
commit | 6058c2f734ca2259aebab9cc83eb63c2718b2e4d (patch) | |
tree | e939096e410589289db1daf9df1cac8424e04c3f /settings/admin.php | |
parent | 814369e0cdc9b1d44344f25cc95a7236d25426eb (diff) | |
download | nextcloud-server-6058c2f734ca2259aebab9cc83eb63c2718b2e4d.tar.gz nextcloud-server-6058c2f734ca2259aebab9cc83eb63c2718b2e4d.zip |
we get best results regarding mime type detection if we use fileinfo - let's tell the admin about that
Diffstat (limited to 'settings/admin.php')
-rwxr-xr-x | settings/admin.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings/admin.php b/settings/admin.php index 4d9685ab920..7cca7165153 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -31,6 +31,7 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); $tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); +$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); |