diff --git a/phpBB/adm/style/acp_storage.html b/phpBB/adm/style/acp_storage.html
index 4146d50d03..d94d569c96 100644
--- a/phpBB/adm/style/acp_storage.html
+++ b/phpBB/adm/style/acp_storage.html
@@ -1,4 +1,3 @@
-{% import 'forms.html' as forms %}
@@ -30,13 +29,35 @@
{% endfor %}
diff --git a/phpBB/adm/style/forms.html b/phpBB/adm/style/forms.html
deleted file mode 100644
index d3e10f563b..0000000000
--- a/phpBB/adm/style/forms.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% macro input(name, value, type, size) %}
-
-{% endmacro %}
-
-{% macro textarea(name, value, rows, cols) %}
-
-{% endmacro %}
-
-{% macro form_control(params) %}
- {% if params['type'] == 'text' %}
- {{ _self.input(params['name'], params['value'], params['type']) }}
- {% endif %}
-{% endmacro %}
-
-{% macro form_label(name, description = '') %}
- {% if description is not empty %}
{{ lang(description) }}{% endif %}
-{% endmacro %}
-
-{% macro form_row(left_content, right_content) %}
-
- -
- {{ left_content }}
-
- -
- {{ right_content}}
-
-
-{% endmacro %}
diff --git a/phpBB/includes/acp/acp_storage.php b/phpBB/includes/acp/acp_storage.php
index aa7f45d981..a552be0f44 100644
--- a/phpBB/includes/acp/acp_storage.php
+++ b/phpBB/includes/acp/acp_storage.php
@@ -11,10 +11,6 @@
*
*/
-/**
-* @todo add cron intervals to server settings? (database_gc, queue_interval, session_gc, search_gc, cache_gc, warnings_gc)
-*/
-
/**
* @ignore
*/