Fix [um_loggedin] shortcode render with htmlspecialchars_decode

This commit is contained in:
Champ Camba
2019-12-23 20:00:39 +08:00
parent 80cfa00d45
commit f480a966d4
+2 -1
View File
@@ -377,7 +377,8 @@ if ( ! class_exists( 'um\core\Shortcodes' ) ) {
}
$output = ob_get_clean();
return htmlspecialchars_decode( $output );
return htmlspecialchars_decode( $output, ENT_NOQUOTES );
}