diff --git a/module/file/view/export2csv.html.php b/module/file/view/export2csv.html.php index a7b94ac557..51da9b6fce 100644 --- a/module/file/view/export2csv.html.php +++ b/module/file/view/export2csv.html.php @@ -12,14 +12,17 @@ ?> $fieldLabel) + foreach($rows as $row) { - isset($row->$fieldName) ? print(str_replace(array('"', ' '), array('“', ' '), htmlspecialchars_decode(strip_tags($row->$fieldName, '')))) : print(''); - echo '","'; + echo '"'; + foreach($fields as $fieldName => $fieldLabel) + { + isset($row->$fieldName) ? print(str_replace(array('"', ' '), array('“', ' '), htmlspecialchars_decode(strip_tags($row->$fieldName, '')))) : print(''); + echo '","'; + } + echo '"' . "\n"; } - echo '"' . "\n"; } if($this->post->kind == 'task' && $config->vision != 'lite') echo $this->lang->file->childTaskTips; diff --git a/module/port/view/header.html.php b/module/port/view/header.html.php index 2b3bbc2b16..53b16bf31c 100644 --- a/module/port/view/header.html.php +++ b/module/port/view/header.html.php @@ -24,7 +24,7 @@ thead > tr > th{width:150px;} .c-id{width:50px} .c-team {width:100px; padding:0px 0px 8px 0px !important;} .c-estimate-1 {width:50px;padding:0px 0px 8px 8px !important;} -.load-indicator{width: 100px; height: 500px;} +#showData .load-indicator{width: 100px; height: 500px;}