You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update.use-cli.php 676B

1234567891011121314
  1. <div class="update" data-productname="<?php p($_['productName']) ?>" data-version="<?php p($_['version']) ?>">
  2. <div class="updateOverview">
  3. <h2 class="title"><?php p($l->t('Update needed')) ?></h2>
  4. <div class="infogroup">
  5. <?php if ($_['tooBig']) {
  6. p($l->t('Please use the command line updater because you have a big instance.'));
  7. } else {
  8. p($l->t('Please use the command line updater because automatic updating is disabled in the config.php.'));
  9. } ?><br><br>
  10. <?php
  11. print_unescaped($l->t('For help, see the <a target="_blank" rel="noreferrer" href="%s">documentation</a>.', [link_to_docs('admin-cli-upgrade')])); ?><br><br>
  12. </div>
  13. </div>
  14. </div>