Coding Standards: Fix code indent in unescape_invalid_shortcodes().

Props joelcj91, GaryJ.
Fixes #43346.

git-svn-id: https://develop.svn.wordpress.org/trunk@42738 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2018-02-25 16:35:58 +00:00
parent 74ccb68c56
commit 32f5aacba7

View File

@ -463,6 +463,7 @@ function unescape_invalid_shortcodes( $content ) {
'[' => '[',
']' => ']',
);
$content = strtr( $content, $trans );
return $content;