From ab23367af9df40e1f26f3028739ccf93b782b40f Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Mon, 28 Sep 2015 13:17:33 -0400 Subject: [PATCH] Content now equal to shortcode in functions, attempt to fix 500 on dev55 --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 0d8b7e5..ba2c2ef 100644 --- a/functions.php +++ b/functions.php @@ -427,7 +427,7 @@ function custom_content($content) { && in_array( 'glm-members-list', $matches[2] ) ) { $shortcode = $matches[0][0]; - $content = do_shortcode($shortcode); + $content = $shortcode; return $content; } else { $content=str_replace($matches[0],"",$content); -- 2.17.1