diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 1806e942d1..f70516e558 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -141,6 +141,7 @@
[Fix] Display profile icons when viewing a topic, or PM when only the jabber icon is to be visible. (Bug #34755)
[Fix] Do not send PMs with warnings if the user cannot read PMs or they are disabled. (Bug #30815)
[Fix] Correctly convert Neil's Birthday MOD to the date format used in phpBB3. (Bug #32895)
+ [Fix] Parse BBCode lists of type square, circle and disc. (Bug #35295)
[Change] No longer allow the direct use of MULTI_INSERT in sql_build_array. sql_multi_insert() must be used.
[Change] Display warning in ACP if config.php file is left writable.
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php
index c4e39ebab6..0f0a821c84 100644
--- a/phpBB/includes/message_parser.php
+++ b/phpBB/includes/message_parser.php
@@ -604,7 +604,7 @@ class bbcode_firstpass extends bbcode
$out .= array_pop($list_end_tags) . ']';
$tok = '[';
}
- else if (preg_match('#^list(=[0-9a-z])?$#i', $buffer, $m))
+ else if (preg_match('#^list(=[0-9a-z]+)?$#i', $buffer, $m))
{
// sub-list, add a closing tag
if (empty($m[1]) || preg_match('/^(?:disc|square|circle)$/i', $m[1]))