mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 18:54:08 +02:00
Merge pull request #6376 from lionel-rowe/ticket/16977
[ticket/16977] Fix cron-job img tag layout and accessibility
This commit is contained in:
7
phpBB/styles/all/template/cron.html
Normal file
7
phpBB/styles/all/template/cron.html
Normal file
@@ -0,0 +1,7 @@
|
||||
{#
|
||||
Runs the cron task by triggering server request to the URL on load. `img` is
|
||||
preferred over JS to ensure maximum compatibility. We use `class="sr-only"`
|
||||
to hide visually and `aria-hidden="true"` to hide from screen-readers; using
|
||||
`hidden` or `display: none` would prevent the task from running.
|
||||
#}
|
||||
<img class="sr-only" aria-hidden="true" src="{{ CRON_TASK_URL|e('html_attr') }}" width="1" height="1" alt="">
|
@@ -68,7 +68,7 @@
|
||||
|
||||
<div>
|
||||
<a id="bottom" class="anchor" accesskey="z"></a>
|
||||
<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
|
||||
{% if not S_IS_BOT %}{{ RUN_CRON_TASK }}{% endif %}
|
||||
</div>
|
||||
|
||||
<script src="{T_JQUERY_LINK}"></script>
|
||||
|
Reference in New Issue
Block a user