Skip to content

Commit

Permalink
Close #1272 Include project ID in exported project names
Browse files Browse the repository at this point in the history
  • Loading branch information
FayCross committed Mar 6, 2024
1 parent b1cb97e commit 322c0ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/decision/export.php
Expand Up @@ -134,7 +134,7 @@
else
$export_type = "_deployment";

$row['zipname'] .= $export_type;
$row['zipname'] .= '_' . $_GET['template_id'] . $export_type;


/*
Expand Down
2 changes: 1 addition & 1 deletion modules/site/export.php
Expand Up @@ -217,7 +217,7 @@ function fixFileLocation($LO_icon_path, $fileLocation) {
else
$export_type = "_deployment";

$row['zipname'] .= $export_type;
$row['zipname'] .= '_' . $_GET['template_id'] . $export_type;


/*
Expand Down
2 changes: 1 addition & 1 deletion modules/xerte/export.php
Expand Up @@ -550,7 +550,7 @@ function create_offline_file($varname, $sourcefile, $destfile)
else
$export_type = "_deployment";

$row['zipname'] .= $export_engine . $export_type;
$row['zipname'] .= $export_engine . '_' . $_GET['template_id'] . $export_type;

/*
* Add the files to the zip file, create the archive, then send it to the user
Expand Down

0 comments on commit 322c0ae

Please sign in to comment.