View | Details | Raw Unified | Return to bug 17389
Collapse All | Expand All

(-)a/admin/import_export_framework.pl (-2 / +1 lines)
Lines 53-59 my $action = $input->param('action') || 'export'; Link Here
53
if ($action eq 'export' && $input->request_method() eq 'GET') {
53
if ($action eq 'export' && $input->request_method() eq 'GET') {
54
    my $strXml = '';
54
    my $strXml = '';
55
    my $format = $input->param('type_export_' . $frameworkcode);
55
    my $format = $input->param('type_export_' . $frameworkcode);
56
    if ($frameworkcode == 'default') {
56
    if ($frameworkcode eq 'default') {
57
        ExportFramework('', \$strXml, $format);
57
        ExportFramework('', \$strXml, $format);
58
    } else {
58
    } else {
59
        ExportFramework($frameworkcode, \$strXml, $format);
59
        ExportFramework($frameworkcode, \$strXml, $format);
60
- 

Return to bug 17389