MINOR: cleaned up finished() return

This commit is contained in:
Will Rossiter 2009-07-05 07:39:28 +00:00
parent 8e80ffbc70
commit 72baa7e893
1 changed files with 1 additions and 3 deletions

View File

@ -536,15 +536,13 @@ JS
function finished() {
$referrer = isset($_GET['referrer']) ? urldecode($_GET['referrer']) : null;
$templateData = $this->customise(array(
return $this->customise(array(
'Content' => $this->customise(
array(
'Link' => $referrer
))->renderWith('ReceivedFormSubmission'),
'Form' => ' ',
));
return $templateData;
}
}