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:
thepurpleblob 2005-08-10 09:56:03 +00:00
parent dbbbb588a3
commit 468aedfe47

View file

@ -96,7 +96,7 @@
$fileformatnames = get_import_export_formats( "export" );
// get filename
if (!isset($exportfilename)) {
if (empty($exportfilename)) {
$exportfilename = default_export_filename($course, $category);
}