Skip to content

Commit

Permalink
COMCL-886: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Shahrukh authored and shahrukh-compuco committed Oct 30, 2024
1 parent 1347fde commit 09f87b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CRM/Financial/Page/FinancialBatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function run() {
) {
$this->edit($this->_action, $id);
}
$this->assign('financialAJAXQFKey', CRM_Core_Key::get('CRM_Financial_Page_AJAX'))
$this->assign('financialAJAXQFKey', CRM_Core_Key::get('CRM_Financial_Page_AJAX'));
// parent run
return CRM_Core_Page::run();
}
Expand Down
2 changes: 1 addition & 1 deletion CRM/Utils/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public static function cleanDir(string $target, bool $rmdir = TRUE, bool $verbos
}
}
elseif (is_dir($object)) {
CRM_Utils_File::cleanDir($object, TRUE, $verbose);
CRM_Utils_File::cleanDir($object, $rmdir, $verbose);
}
elseif (is_file($object)) {
CRM_Utils_File::try_unlink($object, "file");
Expand Down

0 comments on commit 09f87b2

Please sign in to comment.