From 27b7cccfa685a7cc494fd7718af8cd0cabffa2b0 Mon Sep 17 00:00:00 2001 From: Hichem Fantar Date: Fri, 2 Feb 2024 15:46:46 +0100 Subject: [PATCH] fix: syntax error in WordPress plugin (#13482) --- packages/app-store/wordpress/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-store/wordpress/plugin.php b/packages/app-store/wordpress/plugin.php index 5f8ba65cb3..2263e96352 100644 --- a/packages/app-store/wordpress/plugin.php +++ b/packages/app-store/wordpress/plugin.php @@ -17,6 +17,6 @@ global $post;extract(shortcode_atts(array( ), $atts)); if(empty($content)) $content='Embed Cal.com'; -return ' ' +return ' '; } add_shortcode('cal', 'cal_shortcode'); \ No newline at end of file