diff --git a/phpBB/adm/style/captcha_qa_acp.html b/phpBB/adm/style/captcha_qa_acp.html
index 26598c7c2b..1118a1f32e 100644
--- a/phpBB/adm/style/captcha_qa_acp.html
+++ b/phpBB/adm/style/captcha_qa_acp.html
@@ -18,11 +18,13 @@
{L_QUESTIONS} |
+ {% if questions %}
{L_QUESTION_TEXT} |
{L_QUESTION_LANG} |
{L_ACTION} |
+ {% endif %}
@@ -33,6 +35,10 @@
{{ question.QUESTION_LANG }} |
{{ ICON_EDIT }} {{ ICON_DELETE }} |
+ {% else %}
+
+ {{ lang('QA_NO_QUESTIONS') }} |
+
{% endfor %}
diff --git a/phpBB/language/en/captcha_qa.php b/phpBB/language/en/captcha_qa.php
index 637c4e035e..b883166159 100644
--- a/phpBB/language/en/captcha_qa.php
+++ b/phpBB/language/en/captcha_qa.php
@@ -61,4 +61,5 @@ $lang = array_merge($lang, array(
'QA_ERROR_MSG' => 'Please fill in all fields and enter at least one answer.',
'QA_LAST_QUESTION' => 'You cannot delete all questions while the plugin is active.',
+ 'QA_NO_QUESTIONS' => 'There are no questions yet.',
));