mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Fixed bug introduced by _variable to _param change - default export
file name was not being generated due to isset rather than empty check.
This commit is contained in:
parent
dbbbb588a3
commit
468aedfe47
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@
|
|||
$fileformatnames = get_import_export_formats( "export" );
|
||||
|
||||
// get filename
|
||||
if (!isset($exportfilename)) {
|
||||
if (empty($exportfilename)) {
|
||||
$exportfilename = default_export_filename($course, $category);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue