1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-26 00:21:04 +03:00

Wraps the PLUGIN_VERSION constant in single quotes

* Fix #442
* Avoids the notice output
This commit is contained in:
Enrique Chavez 2017-09-11 11:33:00 -05:00
parent 1f3c2acbe2
commit 65a87940e9

View file

@ -30,7 +30,7 @@ if ( ! defined( 'WPINC' ) ) {
die;
}
define( PLUGIN_VERSION, '1.0.0' );
define( 'PLUGIN_VERSION', '1.0.0' );
/**
* The code that runs during plugin activation.