From d89df5aeb07d80b9f9f27a680f08057000ccb515 Mon Sep 17 00:00:00 2001 From: Denis Chenu Date: Mon, 28 Jul 2014 14:05:16 +0200 Subject: [PATCH] Dev: Fixed : unable to use abbreviated heading --- application/helpers/admin/export/Writer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/admin/export/Writer.php b/application/helpers/admin/export/Writer.php index 931bc72d2d1..249f3bdb306 100644 --- a/application/helpers/admin/export/Writer.php +++ b/application/helpers/admin/export/Writer.php @@ -44,7 +44,7 @@ public function init(SurveyObj $oSurvey, $sLanguageCode, FormattingOptions $oOpt * @param string $fieldName * @return string */ - public function getAbbreviatedHeading(SurveyObj $oSurvey, $fieldName) + public function getAbbreviatedHeading(SurveyObj $oSurvey, FormattingOptions $oOptions, $fieldName) { $oOptions->headingTextLength=((int)$oOptions->headingTextLength)?(int)$oOptions->headingTextLength:15; return $this->getHeadingText($oSurvey, $oOptions, $fieldName);