Skip to content

Commit

Permalink
Core: Special download actions for modules were broken
Browse files Browse the repository at this point in the history
  • Loading branch information
mschering committed Oct 13, 2020
1 parent e967147 commit 425edd4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
13-10-2020 6.4.180
- Email: Fixed scroll bars in recipient fields
- Core: Special download actions for modules were broken

11-10-2020 6.4.179
- Address book: CSV export broken
Expand Down
2 changes: 1 addition & 1 deletion www/api/download.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
exit("Controller class '$ctrlCls' not found");
}

$c = new $ctrlCls;
$c = $ctrlCls::get();
}


Expand Down
2 changes: 1 addition & 1 deletion www/api/page.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
exit("Controller class '$ctrlCls' not found");
}

$c = new $ctrlCls;
$c = $ctrlCls::get();
}

if(!method_exists($c, $method)) {
Expand Down
2 changes: 1 addition & 1 deletion www/version.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?php
return "6.4.179";
return "6.4.180";

0 comments on commit 425edd4

Please sign in to comment.