Skip to content

Commit

Permalink
Fixed issue 03341: survey title encoding Problem, when exporting to s…
Browse files Browse the repository at this point in the history
…preedsheet

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@7101 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Tim Wahrendorff committed Jun 13, 2009
1 parent ec72e66 commit 813aa11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/exportresults.php
Expand Up @@ -460,7 +460,7 @@
$result=db_execute_assoc($query) or safe_die("Couldn't get privacy data<br />$query<br />".$connect->ErrorMsg());
$row = $result->FetchRow();

$sheet =& $workbook->addWorksheet($row['surveyls_title']);
$sheet =& $workbook->addWorksheet(utf8_decode($row['surveyls_title']));
$sheet->setInputEncoding('utf-8');
$separator="~|";
break;
Expand Down

0 comments on commit 813aa11

Please sign in to comment.