diff --git a/phpBB/adm/style/acp_storage.html b/phpBB/adm/style/acp_storage.html
index 5107385834..79bb1ad79d 100644
--- a/phpBB/adm/style/acp_storage.html
+++ b/phpBB/adm/style/acp_storage.html
@@ -16,22 +16,17 @@
- {% for storage in STORAGES %}
+ {% for storage in STORAGE_STATS %}
- {{ lang('STORAGE_' ~ storage.get_name | upper ~ '_TITLE') }} |
- {{ storage.get_num_files }} |
- {{ storage.get_size | format_bytes }} |
- {% if storage.free_space !== false %}
- {{ storage.free_space | format_bytes }} |
- {% else %}
- {L_STORAGE_UNKNOWN} |
- {% endif %}
+ {{ storage.name }} |
+ {{ storage.files }} |
+ {{ storage.size }} |
+ {{ storage.free_space }} |
{% endfor %}
-