Skip to content

Commit

Permalink
COMCL-885: 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 806d9f4 commit 3b60651
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 @@ -162,7 +162,7 @@ public static function cleanDir($target, $rmdir = TRUE, $verbose = TRUE) {
}
}
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 3b60651

Please sign in to comment.