1
0

admin.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. <?php
  2. /**
  3. * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
  4. * This file is licensed under the Affero General Public License version 3 or later.
  5. * See the COPYING-README file.
  6. */
  7. /**
  8. * @var array $_
  9. * @var \OCP\IL10N $l
  10. */
  11. style('settings', 'settings');
  12. script('settings', [ 'settings', 'admin', 'log'] );
  13. script('core', ['multiselect', 'setupchecks']);
  14. vendor_script('select2/select2');
  15. vendor_style('select2/select2');
  16. $levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal');
  17. $levelLabels = array(
  18. $l->t( 'Everything (fatal issues, errors, warnings, info, debug)' ),
  19. $l->t( 'Info, warnings, errors and fatal issues' ),
  20. $l->t( 'Warnings, errors and fatal issues' ),
  21. $l->t( 'Errors and fatal issues' ),
  22. $l->t( 'Fatal issues only' ),
  23. );
  24. $mail_smtpauthtype = array(
  25. '' => $l->t('None'),
  26. 'LOGIN' => $l->t('Login'),
  27. 'PLAIN' => $l->t('Plain'),
  28. 'NTLM' => $l->t('NT LAN Manager'),
  29. );
  30. $mail_smtpsecure = array(
  31. '' => $l->t('None'),
  32. 'ssl' => $l->t('SSL'),
  33. 'tls' => $l->t('TLS'),
  34. );
  35. $mail_smtpmode = array(
  36. 'php',
  37. 'smtp',
  38. );
  39. if ($_['sendmail_is_available']) {
  40. $mail_smtpmode[] = 'sendmail';
  41. }
  42. if ($_['mail_smtpmode'] == 'qmail') {
  43. $mail_smtpmode[] = 'qmail';
  44. }
  45. ?>
  46. <div id="app-navigation">
  47. <ul>
  48. <?php foreach($_['forms'] as $form) {
  49. if (isset($form['anchor'])) {
  50. $anchor = '#' . $form['anchor'];
  51. $sectionName = $form['section-name'];
  52. print_unescaped(sprintf("<li><a href='%s'>%s</a></li>", OC_Util::sanitizeHTML($anchor), OC_Util::sanitizeHTML($sectionName)));
  53. }
  54. }?>
  55. </ul>
  56. </div>
  57. <div id="app-content">
  58. <div id="security-warning" class="section">
  59. <h2><?php p($l->t('Security & setup warnings'));?></h2>
  60. <ul>
  61. <?php
  62. // is read only config enabled
  63. if ($_['readOnlyConfigEnabled']) {
  64. ?>
  65. <li>
  66. <?php p($l->t('The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update.')); ?>
  67. </li>
  68. <?php
  69. }
  70. // Are doc blocks accessible?
  71. if (!$_['isAnnotationsWorking']) {
  72. ?>
  73. <li>
  74. <?php p($l->t('PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.')); ?><br>
  75. <?php p($l->t('This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.')); ?>
  76. </li>
  77. <?php
  78. }
  79. // SQLite database performance issue
  80. if ($_['databaseOverload']) {
  81. ?>
  82. <li>
  83. <?php p($l->t('SQLite is used as database. For larger installations we recommend to switch to a different database backend.')); ?><br>
  84. <?php p($l->t('Especially when using the desktop client for file syncing the use of SQLite is discouraged.')); ?><br>
  85. <?php print_unescaped($l->t('To migrate to another database use the command line tool: \'occ db:convert-type\', or see the <a target="_blank" href="%s">documentation ↗</a>.', link_to_docs('admin-db-conversion') )); ?>
  86. </li>
  87. <?php
  88. }
  89. // Windows Warning
  90. if ($_['WindowsWarning']) {
  91. ?>
  92. <li>
  93. <?php p($l->t('Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience.')); ?>
  94. </li>
  95. <?php
  96. }
  97. // APCU Warning if outdated
  98. if ($_['ApcuOutdatedWarning']) {
  99. ?>
  100. <li>
  101. <?php p($l->t('APCu below version 4.0.6 is installed, for stability and performance reasons we recommend to update to a newer APCu version.')); ?>
  102. </li>
  103. <?php
  104. }
  105. // if module fileinfo available?
  106. if (!$_['has_fileinfo']) {
  107. ?>
  108. <li>
  109. <?php p($l->t('The PHP module \'fileinfo\' is missing. We strongly recommend to enable this module to get best results with mime-type detection.')); ?>
  110. </li>
  111. <?php
  112. }
  113. // is locale working ?
  114. if (!$_['isLocaleWorking']) {
  115. ?>
  116. <li>
  117. <?php
  118. $locales = 'en_US.UTF-8/fr_FR.UTF-8/es_ES.UTF-8/de_DE.UTF-8/ru_RU.UTF-8/pt_BR.UTF-8/it_IT.UTF-8/ja_JP.UTF-8/zh_CN.UTF-8';
  119. p($l->t('System locale can not be set to a one which supports UTF-8.'));
  120. ?>
  121. <br>
  122. <?php
  123. p($l->t('This means that there might be problems with certain characters in file names.'));
  124. ?>
  125. <br>
  126. <?php
  127. p($l->t('We strongly suggest installing the required packages on your system to support one of the following locales: %s.', array($locales)));
  128. ?>
  129. </li>
  130. <?php
  131. }
  132. if ($_['suggestedOverwriteCliUrl']) {
  133. ?>
  134. <li>
  135. <?php p($l->t('If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwrite.cli.url" option in your config.php file to the webroot path of your installation (Suggested: "%s")', $_['suggestedOverwriteCliUrl'])); ?>
  136. </li>
  137. <?php
  138. }
  139. if ($_['cronErrors']) {
  140. ?>
  141. <li>
  142. <?php p($l->t('It was not possible to execute the cronjob via CLI. The following technical errors have appeared:')); ?>
  143. <br>
  144. <ol>
  145. <?php foreach(json_decode($_['cronErrors']) as $error) { if(isset($error->error)) {?>
  146. <li><?php p($error->error) ?></li>
  147. <ul><li><?php p($error->hint) ?></li></ul>
  148. <?php }};?>
  149. </ol>
  150. </li>
  151. <?php
  152. }
  153. ?>
  154. </ul>
  155. <div id="postsetupchecks">
  156. <div class="loading"></div>
  157. <ul class="errors hidden"></ul>
  158. <p class="hint hidden">
  159. <?php print_unescaped($l->t('Please double check the <a target="_blank" href="%s">installation guides ↗</a>, and check for any errors or warnings in the <a href="#log-section">log</a>.', link_to_docs('admin-install'))); ?>
  160. </p>
  161. </div>
  162. </div>
  163. <?php foreach($_['forms'] as $form) {
  164. if (isset($form['form'])) {?>
  165. <div id="<?php isset($form['anchor']) ? p($form['anchor']) : p('');?>"><?php print_unescaped($form['form']);?></div>
  166. <?php }
  167. };?>
  168. <div class="section" id="backgroundjobs">
  169. <h2 class="inlineblock"><?php p($l->t('Cron'));?></h2>
  170. <?php if ($_['cron_log']): ?>
  171. <p class="cronlog inlineblock">
  172. <?php if ($_['lastcron'] !== false):
  173. $relative_time = relative_modified_date($_['lastcron']);
  174. $absolute_time = OC_Util::formatDate($_['lastcron']);
  175. if (time() - $_['lastcron'] <= 3600): ?>
  176. <span class="cronstatus success"></span>
  177. <span class="crondate" original-title="<?php p($absolute_time);?>">
  178. <?php p($l->t("Last cron job execution: %s.", array($relative_time)));?>
  179. </span>
  180. <?php else: ?>
  181. <span class="cronstatus error"></span>
  182. <span class="crondate" original-title="<?php p($absolute_time);?>">
  183. <?php p($l->t("Last cron job execution: %s. Something seems wrong.", array($relative_time)));?>
  184. </span>
  185. <?php endif;
  186. else: ?>
  187. <span class="cronstatus error"></span>
  188. <?php p($l->t("Cron was not executed yet!"));
  189. endif; ?>
  190. </p>
  191. <?php endif; ?>
  192. <p>
  193. <input type="radio" name="mode" value="ajax"
  194. id="backgroundjobs_ajax" <?php if ($_['backgroundjobs_mode'] === "ajax") {
  195. print_unescaped('checked="checked"');
  196. } ?>>
  197. <label for="backgroundjobs_ajax">AJAX</label><br/>
  198. <em><?php p($l->t("Execute one task with each page loaded")); ?></em>
  199. </p>
  200. <p>
  201. <input type="radio" name="mode" value="webcron"
  202. id="backgroundjobs_webcron" <?php if ($_['backgroundjobs_mode'] === "webcron") {
  203. print_unescaped('checked="checked"');
  204. } ?>>
  205. <label for="backgroundjobs_webcron">Webcron</label><br/>
  206. <em><?php p($l->t("cron.php is registered at a webcron service to call cron.php every 15 minutes over http.")); ?></em>
  207. </p>
  208. <p>
  209. <input type="radio" name="mode" value="cron"
  210. id="backgroundjobs_cron" <?php if ($_['backgroundjobs_mode'] === "cron") {
  211. print_unescaped('checked="checked"');
  212. } ?>>
  213. <label for="backgroundjobs_cron">Cron</label><br/>
  214. <em><?php p($l->t("Use system's cron service to call the cron.php file every 15 minutes.")); ?></em>
  215. </p>
  216. </div>
  217. <div class="section" id="shareAPI">
  218. <h2><?php p($l->t('Sharing'));?></h2>
  219. <p id="enable">
  220. <input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled"
  221. value="1" <?php if ($_['shareAPIEnabled'] === 'yes') print_unescaped('checked="checked"'); ?> />
  222. <label for="shareAPIEnabled"><?php p($l->t('Allow apps to use the Share API'));?></label><br/>
  223. </p>
  224. <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>">
  225. <input type="checkbox" name="shareapi_allow_links" id="allowLinks"
  226. value="1" <?php if ($_['allowLinks'] === 'yes') print_unescaped('checked="checked"'); ?> />
  227. <label for="allowLinks"><?php p($l->t('Allow users to share via link'));?></label><br/>
  228. </p>
  229. <p id="publicLinkSettings" class="indent <?php if ($_['allowLinks'] !== 'yes' || $_['shareAPIEnabled'] === 'no') p('hidden'); ?>">
  230. <input type="checkbox" name="shareapi_enforce_links_password" id="enforceLinkPassword"
  231. value="1" <?php if ($_['enforceLinkPassword']) print_unescaped('checked="checked"'); ?> />
  232. <label for="enforceLinkPassword"><?php p($l->t('Enforce password protection'));?></label><br/>
  233. <input type="checkbox" name="shareapi_allow_public_upload" id="allowPublicUpload"
  234. value="1" <?php if ($_['allowPublicUpload'] == 'yes') print_unescaped('checked="checked"'); ?> />
  235. <label for="allowPublicUpload"><?php p($l->t('Allow public uploads'));?></label><br/>
  236. <input type="checkbox" name="shareapi_allow_public_notification" id="allowPublicMailNotification"
  237. value="1" <?php if ($_['allowPublicMailNotification'] == 'yes') print_unescaped('checked="checked"'); ?> />
  238. <label for="allowPublicMailNotification"><?php p($l->t('Allow users to send mail notification for shared files'));?></label><br/>
  239. <input type="checkbox" name="shareapi_default_expire_date" id="shareapiDefaultExpireDate"
  240. value="1" <?php if ($_['shareDefaultExpireDateSet'] === 'yes') print_unescaped('checked="checked"'); ?> />
  241. <label for="shareapiDefaultExpireDate"><?php p($l->t('Set default expiration date'));?></label><br/>
  242. </p>
  243. <p id="setDefaultExpireDate" class="double-indent <?php if ($_['allowLinks'] !== 'yes' || $_['shareDefaultExpireDateSet'] === 'no' || $_['shareAPIEnabled'] === 'no') p('hidden');?>">
  244. <?php p($l->t( 'Expire after ' )); ?>
  245. <input type="text" name='shareapi_expire_after_n_days' id="shareapiExpireAfterNDays" placeholder="<?php p('7')?>"
  246. value='<?php p($_['shareExpireAfterNDays']) ?>' />
  247. <?php p($l->t( 'days' )); ?>
  248. <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapiEnforceExpireDate"
  249. value="1" <?php if ($_['shareEnforceExpireDate'] === 'yes') print_unescaped('checked="checked"'); ?> />
  250. <label for="shareapiEnforceExpireDate"><?php p($l->t('Enforce expiration date'));?></label><br/>
  251. </p>
  252. <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>">
  253. <input type="checkbox" name="shareapi_allow_resharing" id="allowResharing"
  254. value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> />
  255. <label for="allowResharing"><?php p($l->t('Allow resharing'));?></label><br/>
  256. </p>
  257. <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>">
  258. <input type="checkbox" name="shareapi_only_share_with_group_members" id="onlyShareWithGroupMembers"
  259. value="1" <?php if ($_['onlyShareWithGroupMembers']) print_unescaped('checked="checked"'); ?> />
  260. <label for="onlyShareWithGroupMembers"><?php p($l->t('Restrict users to only share with users in their groups'));?></label><br/>
  261. </p>
  262. <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>">
  263. <input type="checkbox" name="shareapi_allow_mail_notification" id="allowMailNotification"
  264. value="1" <?php if ($_['allowMailNotification'] === 'yes') print_unescaped('checked="checked"'); ?> />
  265. <label for="allowMailNotification"><?php p($l->t('Allow users to send mail notification for shared files to other users'));?></label><br/>
  266. </p>
  267. <p class="<?php if ($_['shareAPIEnabled'] === 'no') p('hidden');?>">
  268. <input type="checkbox" name="shareapi_exclude_groups" id="shareapiExcludeGroups"
  269. value="1" <?php if ($_['shareExcludeGroups']) print_unescaped('checked="checked"'); ?> />
  270. <label for="shareapiExcludeGroups"><?php p($l->t('Exclude groups from sharing'));?></label><br/>
  271. </p>
  272. <p id="selectExcludedGroups" class="indent <?php if (!$_['shareExcludeGroups'] || $_['shareAPIEnabled'] === 'no') p('hidden'); ?>">
  273. <input name="shareapi_exclude_groups_list" type="hidden" id="excludedGroups" value="<?php p($_['shareExcludedGroupsList']) ?>" style="width: 400px"/>
  274. <br />
  275. <em><?php p($l->t('These groups will still be able to receive shares, but not to initiate them.')); ?></em>
  276. </p>
  277. </div>
  278. <div class="section">
  279. <form id="mail_general_settings" class="mail_settings">
  280. <h2><?php p($l->t('Email Server'));?></h2>
  281. <p><?php p($l->t('This is used for sending out notifications.')); ?> <span id="mail_settings_msg" class="msg"></span></p>
  282. <p>
  283. <label for="mail_smtpmode"><?php p($l->t( 'Send mode' )); ?></label>
  284. <select name='mail_smtpmode' id='mail_smtpmode'>
  285. <?php foreach ($mail_smtpmode as $smtpmode):
  286. $selected = '';
  287. if ($smtpmode == $_['mail_smtpmode']):
  288. $selected = 'selected="selected"';
  289. endif; ?>
  290. <option value='<?php p($smtpmode)?>' <?php p($selected) ?>><?php p($smtpmode) ?></option>
  291. <?php endforeach;?>
  292. </select>
  293. <label id="mail_smtpsecure_label" for="mail_smtpsecure"
  294. <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
  295. <?php p($l->t( 'Encryption' )); ?>
  296. </label>
  297. <select name="mail_smtpsecure" id="mail_smtpsecure"
  298. <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
  299. <?php foreach ($mail_smtpsecure as $secure => $name):
  300. $selected = '';
  301. if ($secure == $_['mail_smtpsecure']):
  302. $selected = 'selected="selected"';
  303. endif; ?>
  304. <option value='<?php p($secure)?>' <?php p($selected) ?>><?php p($name) ?></option>
  305. <?php endforeach;?>
  306. </select>
  307. </p>
  308. <p>
  309. <label for="mail_from_address"><?php p($l->t( 'From address' )); ?></label>
  310. <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p($l->t('mail'))?>"
  311. value='<?php p($_['mail_from_address']) ?>' />@
  312. <input type="text" name='mail_domain' id="mail_domain" placeholder="example.com"
  313. value='<?php p($_['mail_domain']) ?>' />
  314. </p>
  315. <p id="setting_smtpauth" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
  316. <label for="mail_smtpauthtype"><?php p($l->t( 'Authentication method' )); ?></label>
  317. <select name='mail_smtpauthtype' id='mail_smtpauthtype'>
  318. <?php foreach ($mail_smtpauthtype as $authtype => $name):
  319. $selected = '';
  320. if ($authtype == $_['mail_smtpauthtype']):
  321. $selected = 'selected="selected"';
  322. endif; ?>
  323. <option value='<?php p($authtype)?>' <?php p($selected) ?>><?php p($name) ?></option>
  324. <?php endforeach;?>
  325. </select>
  326. <input type="checkbox" name="mail_smtpauth" id="mail_smtpauth" value="1"
  327. <?php if ($_['mail_smtpauth']) print_unescaped('checked="checked"'); ?> />
  328. <label for="mail_smtpauth"><?php p($l->t( 'Authentication required' )); ?></label>
  329. </p>
  330. <p id="setting_smtphost" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
  331. <label for="mail_smtphost"><?php p($l->t( 'Server address' )); ?></label>
  332. <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="smtp.example.com"
  333. value='<?php p($_['mail_smtphost']) ?>' />
  334. :
  335. <input type="text" name='mail_smtpport' id="mail_smtpport" placeholder="<?php p($l->t('Port'))?>"
  336. value='<?php p($_['mail_smtpport']) ?>' />
  337. </p>
  338. </form>
  339. <form class="mail_settings" id="mail_credentials_settings">
  340. <p id="mail_credentials" <?php if (!$_['mail_smtpauth'] || $_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
  341. <label for="mail_smtpname"><?php p($l->t( 'Credentials' )); ?></label>
  342. <input type="text" name='mail_smtpname' id="mail_smtpname" placeholder="<?php p($l->t('SMTP Username'))?>"
  343. value='<?php p($_['mail_smtpname']) ?>' />
  344. <input type="password" name='mail_smtppassword' id="mail_smtppassword" autocomplete="off"
  345. placeholder="<?php p($l->t('SMTP Password'))?>" value='<?php p($_['mail_smtppassword']) ?>' />
  346. <input id="mail_credentials_settings_submit" type="button" value="<?php p($l->t('Store credentials')) ?>">
  347. </p>
  348. </form>
  349. <br />
  350. <em><?php p($l->t( 'Test email settings' )); ?></em>
  351. <input type="submit" name="sendtestemail" id="sendtestemail" value="<?php p($l->t( 'Send email' )); ?>"/>
  352. <span id="sendtestmail_msg" class="msg"></span>
  353. </div>
  354. <div class="section" id="log-section">
  355. <h2><?php p($l->t('Log'));?></h2>
  356. <?php p($l->t('Log level'));?> <select name='loglevel' id='loglevel'>
  357. <?php for ($i = 0; $i < 5; $i++):
  358. $selected = '';
  359. if ($i == $_['loglevel']):
  360. $selected = 'selected="selected"';
  361. endif; ?>
  362. <option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option>
  363. <?php endfor;?>
  364. </select>
  365. <?php if ($_['showLog'] && $_['doesLogFileExist']): ?>
  366. <table id="log" class="grid">
  367. <?php foreach ($_['entries'] as $entry): ?>
  368. <tr>
  369. <td>
  370. <?php p($levels[$entry->level]);?>
  371. </td>
  372. <td>
  373. <?php p($entry->app);?>
  374. </td>
  375. <td>
  376. <?php p($entry->message);?>
  377. </td>
  378. <td class="date">
  379. <?php if(is_int($entry->time)){
  380. p(OC_Util::formatDate($entry->time));
  381. } else {
  382. p($entry->time);
  383. }?>
  384. </td>
  385. </tr>
  386. <?php endforeach;?>
  387. </table>
  388. <?php if ($_['logFileSize'] > 0): ?>
  389. <a href="<?php print_unescaped(OC::$server->getURLGenerator()->linkToRoute('settings.LogSettings.download')); ?>" class="button" id="downloadLog"><?php p($l->t('Download logfile'));?></a>
  390. <?php endif; ?>
  391. <?php if ($_['entriesremain']): ?>
  392. <input id="moreLog" type="button" value="<?php p($l->t('More'));?>...">
  393. <input id="lessLog" type="button" value="<?php p($l->t('Less'));?>...">
  394. <?php endif; ?>
  395. <?php if ($_['logFileSize'] > (100 * 1024 * 1024)): ?>
  396. <br>
  397. <em>
  398. <?php p($l->t('The logfile is bigger than 100 MB. Downloading it may take some time!')); ?>
  399. </em>
  400. <?php endif; ?>
  401. <?php endif; ?>
  402. </div>
  403. <div class="section" id="admin-tips">
  404. <h2><?php p($l->t('Tips & tricks'));?></h2>
  405. <ul>
  406. <li><a target="_blank" href="<?php p(link_to_docs('admin-backup')); ?>"><?php p($l->t('How to do backups'));?> ↗</a></li>
  407. <li><a target="_blank" href="<?php p(link_to_docs('admin-monitoring')); ?>"><?php p($l->t('Advanced monitoring'));?> ↗</a></li>
  408. <li><a target="_blank" href="<?php p(link_to_docs('admin-performance')); ?>"><?php p($l->t('Performance tuning'));?> ↗</a></li>
  409. <li><a target="_blank" href="<?php p(link_to_docs('admin-config')); ?>"><?php p($l->t('Improving the config.php'));?> ↗</a></li>
  410. <li><a target="_blank" href="<?php p(link_to_docs('developer-theming')); ?>"><?php p($l->t('Theming'));?> ↗</a></li>
  411. </ul>
  412. </div>
  413. <div class="section">
  414. <h2><?php p($l->t('Version'));?></h2>
  415. <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?>
  416. <?php include('settings.development.notice.php'); ?>
  417. </div>
  418. <div class="section credits-footer">
  419. <p><?php print_unescaped($theme->getShortFooter()); ?></p>
  420. </div>
  421. </div>