Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Jul 17, 2023
1 parent b84379b commit 4b147e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Helper/PluginCleaningHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ public function getDeletablePlugins()
*/
public function getFolderName()
{
// Pull variable from modal
// Pull variable from the modal
$plugin_name = $this->request->getStringParam('plugin_name');
$folder_name = [];

// Match variable to json content if the plugin name matches
// Match the variable to the JSON content if the plugin name matches
foreach ($this->helper->pluginCleaningHelper->getDeletablePlugins() as $plugin) {
if ($plugin['plugin_name'] === $plugin_name && isset($plugin['plugin_folder_name'])) {
$folder_name = $plugin['plugin_folder_name'];
Expand Down

0 comments on commit 4b147e2

Please sign in to comment.