Parcourir la source

remove extra brackets

causefx il y a 4 ans
Parent
commit
6d534579f2
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      test/plugin.php

+ 3 - 3
test/plugin.php

@@ -1,6 +1,6 @@
 <?php
 // PLUGIN INFORMATION
-$GLOBALS['plugins'][]['Test'] = array( // Plugin Name
+$GLOBALS['plugins']['Test'] = array( // Plugin Name
 	'name' => 'Test', // Plugin Name
 	'author' => 'CauseFX', // Who wrote the plugin
 	'category' => 'Testing', // One to Two Word Description
@@ -8,7 +8,7 @@ $GLOBALS['plugins'][]['Test'] = array( // Plugin Name
 	'license' => 'personal', // License Type use , for multiple
 	'idPrefix' => 'TEST', // html element id prefix (All Uppercase)
 	'configPrefix' => 'TEST', // config file prefix for array items without the hypen (All Uppercase)
-	'version' => '1.0.0', // SemVer of plugin
+	'version' => '1.0.1', // SemVer of plugin
 	'image' => 'api/plugins/test/logo.png', // 1:1 non transparent image for plugin
 	'settings' => true, // does plugin need a settings modal?
 	'bind' => true, // use default bind to make settings page - true or false
@@ -51,4 +51,4 @@ class TestPlugin extends Organizr
 			)
 		);
 	}
-}
+}