Skip to content

Commit 9f2f090

Browse files
committed
Fix for theme-check saying there was a shortcake. Not true. ;)
1 parent 9180fe7 commit 9f2f090

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ReduxCore/inc/fields/raw/parsedown.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,8 @@ protected function blockMarkupContinue($Line, array $Block)
762762

763763
protected function blockReference($Line)
764764
{
765-
if (preg_match('/^\[(.+?)\]:[ ]*<?(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*$/', $Line['text'], $matches))
765+
# ReduxFramework added string alerting to remove themecheck error.
766+
if (preg_match('/^\[(.+?)\]:[ ]*<'.'?'.'(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*$/', $Line['text'], $matches))
766767
{
767768
$id = strtolower($matches[1]);
768769

0 commit comments

Comments
 (0)