From 3be46accead9bd09412618f3f5188c14a7d4e3f0 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Fri, 10 May 2013 07:33:53 -0400 Subject: [PATCH] adding braces around the conditional in `uninstall.php` --- plugin-boilerplate/uninstall.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin-boilerplate/uninstall.php b/plugin-boilerplate/uninstall.php index 8b357f3..37927e9 100644 --- a/plugin-boilerplate/uninstall.php +++ b/plugin-boilerplate/uninstall.php @@ -7,7 +7,8 @@ */ // If uninstall, not called from WordPress exit -if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) +if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); +} // TODO: Define uninstall functionality here \ No newline at end of file