Skip to content

Commit a431403

Browse files
WordPress.org feedback
1 parent 5b423d4 commit a431403

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
=== Stagent ===
2-
Contributors: StagentArtwin
2+
Contributors: stagent
33
Tags: stagent, bookings, artists, events, djs
44
Requires at least: 5.0
55
Tested up to: 6.7.2
6-
Stable tag: 0.2.0
6+
Stable tag: 0.2.1
77
Requires PHP: 5.6
88
License: GNU General Public License v2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html

stagent.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Stagent
44
* Plugin URI: https://stagent.com
55
* Description: Displays bookings from Stagent API in WordPress.
6-
* Version: 0.2.0
6+
* Version: 0.2.1
77
* Author: StagentArtwin B.V.
88
* License: GNU General Public License v2 or later
99
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -17,7 +17,7 @@
1717
}
1818

1919
// Define constants
20-
define('STAGENT_VERSION', '0.2.0');
20+
define('STAGENT_VERSION', '0.2.1');
2121
define('STAGENT_API_URL', 'https://stagent.com/api/v2');
2222
define('STAGENT_DEVELOPMENT_MODE', true);
2323

@@ -64,7 +64,7 @@ function stagent_enqueue_admin_scripts($hook) {
6464
add_action('admin_enqueue_scripts', 'stagent_enqueue_admin_scripts', 10, 1);
6565

6666
// Boot the plugin
67-
function run_stagent_plugin() {
67+
function stagent_bootstrap_plugin() {
6868
static $plugin_instance = null;
6969

7070
if (null === $plugin_instance) {
@@ -74,4 +74,4 @@ function run_stagent_plugin() {
7474

7575
return $plugin_instance; // Singleton pattern
7676
}
77-
add_action('plugins_loaded', 'run_stagent_plugin', 10);
77+
add_action('plugins_loaded', 'stagent_bootstrap_plugin', 10);

0 commit comments

Comments
 (0)