summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-10-16 13:13:03 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-10-19 08:26:39 +0200
commit9cab23574fbaf59c07dc3f187f0490f298dd9e75 (patch)
tree05e5460e590dc70c8289df67fdd1e0f22ce28326 /templates
parentab4f941028e27ced237b061fc9aae5d1eb3b35a6 (diff)
fix bug using php template for warning message
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/part.content.warnings.php66
1 files changed, 5 insertions, 61 deletions
diff --git a/templates/part.content.warnings.php b/templates/part.content.warnings.php
index f68933dba..db9b2f218 100644
--- a/templates/part.content.warnings.php
+++ b/templates/part.content.warnings.php
@@ -1,62 +1,6 @@
-<?php if ($_['warnings']['improperlyConfiguredCron']) { ?>
- <style>
- #cron-warning {
- position: absolute;
- right: 30px;
- top: 120px;
- z-index: 5;
- padding: 5px;
- background-color: var(--color-main-background);
- color: var(--color-main-text);
- box-shadow: 0 0 6px 0 var(--color-box-shadow);
- border-radius: var(--border-radius);
- display: flex;
- max-width: 85%
- }
-
- #cron-warning a {
- color: #3a84e4;
- text-decoration: underline;
- font-size: small;
- }
-
- #close-cron-warning {
- padding: 10px;
- font-weight: bold;
- cursor: pointer;
- }
-
- #content {
- margin-top: 0px;
- }
- </style>
-
- <div id="cron-warning">
- <div style="<?= $_['nc_major_version'] >= 25 ? 'padding: 12px;' : ''; ?>">
- <p><?php p($l->t('Ajax or webcron mode detected! Your feeds will not be updated!')); ?></p>
- <ul>
- <li>
- <a href="https://docs.nextcloud.org/server/latest/admin_manual/configuration_server/background_jobs_configuration.html#cron"
- target="_blank"
- rel="noreferrer">
- <?php
- p($l->t('How to set up the operating system cron'));
- ?>
- </a>
- </li>
- <li>
- <a href="https://github.com/nextcloud/news-updater"
- target="_blank"
- rel="noreferrer">
- <?php
- p($l->t('Install and set up a faster parallel updater that uses the News app\'s update API'));
- ?>
- </a>
- </li>
- </ul>
- </div>
- <div>
- <span id="close-cron-warning">X</span>
- </div>
- </div>
+<?php if ($_['warnings']['improperlyConfiguredCron']) {
+
+ script('news', 'test')
+?>
+<div></div>
<?php }; ?>