mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
adding braces around the conditional in uninstall.php
This commit is contained in:
parent
6f97b9eabd
commit
3be46accea
1 changed files with 2 additions and 1 deletions
|
@ -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
|
Loading…
Reference in a new issue