Changeset 3399325
- Timestamp:
- 11/20/2025 01:54:01 AM (4 months ago)
- Location:
- amimoto-dashboard
- Files:
-
- 6 added
- 2 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from amimoto-dashboard/trunk)
-
tags/1.0.2/.github/workflows/claude-review.yml (added)
-
tags/1.0.2/.github/workflows/claude.yml (added)
-
tags/1.0.2/classes/WP/Plugins.php (modified) (2 diffs)
-
tags/1.0.2/renovate.json (added)
-
trunk/.github/workflows/claude-review.yml (added)
-
trunk/.github/workflows/claude.yml (added)
-
trunk/classes/WP/Plugins.php (modified) (2 diffs)
-
trunk/renovate.json (added)
Legend:
- Unmodified
- Added
- Removed
-
amimoto-dashboard/tags/1.0.2/classes/WP/Plugins.php
r3300443 r3399325 140 140 return new \WP_Error( 'AMIMOTO Dashboard Error', $plugin_name . ' Plugin does not exists' ); 141 141 } 142 \activate_plugins( $plugin_file_path, '', Environment::is_multisite() ); 142 $env = new Environment(); 143 \activate_plugins( $plugin_file_path, '', $env->is_multisite() ); 143 144 } 144 145 … … 155 156 return new \WP_Error( 'AMIMOTO Dashboard Error', $plugin_name . ' Plugin does not exists' ); 156 157 } 157 \deactivate_plugins( $plugin_file_path, '', Environment::is_multisite() ); 158 $env = new Environment(); 159 \deactivate_plugins( $plugin_file_path, '', $env->is_multisite() ); 158 160 } 159 161 -
amimoto-dashboard/trunk/classes/WP/Plugins.php
r3300443 r3399325 140 140 return new \WP_Error( 'AMIMOTO Dashboard Error', $plugin_name . ' Plugin does not exists' ); 141 141 } 142 \activate_plugins( $plugin_file_path, '', Environment::is_multisite() ); 142 $env = new Environment(); 143 \activate_plugins( $plugin_file_path, '', $env->is_multisite() ); 143 144 } 144 145 … … 155 156 return new \WP_Error( 'AMIMOTO Dashboard Error', $plugin_name . ' Plugin does not exists' ); 156 157 } 157 \deactivate_plugins( $plugin_file_path, '', Environment::is_multisite() ); 158 $env = new Environment(); 159 \deactivate_plugins( $plugin_file_path, '', $env->is_multisite() ); 158 160 } 159 161
Note: See TracChangeset
for help on using the changeset viewer.