From 65a87940e99eb29395e4adbae9eab269fb2f37c1 Mon Sep 17 00:00:00 2001 From: Enrique Chavez Date: Mon, 11 Sep 2017 11:33:00 -0500 Subject: [PATCH] Wraps the PLUGIN_VERSION constant in single quotes * Fix #442 * Avoids the notice output --- plugin-name/plugin-name.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-name/plugin-name.php b/plugin-name/plugin-name.php index befaf21..bc0c187 100644 --- a/plugin-name/plugin-name.php +++ b/plugin-name/plugin-name.php @@ -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.