1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-03 20:03:16 +03:00

adding braces around the conditional in uninstall.php

This commit is contained in:
Tom McFarlin 2013-05-10 07:33:53 -04:00
parent 6f97b9eabd
commit 3be46accea

View file

@ -7,7 +7,8 @@
*/ */
// If uninstall, not called from WordPress exit // If uninstall, not called from WordPress exit
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit(); exit();
}
// TODO: Define uninstall functionality here // TODO: Define uninstall functionality here