Skip to content

Commit

Permalink
Remove unnecessary quote/space
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Jul 24, 2017
1 parent d9576f1 commit 008dfa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function setup($sMod = '')
protected function download($sSecret)
{
$sFileName = '2FA-backup-code-' . $this->sMod . '-' . Url::clean($this->registry->site_name) . '.txt';
header('Content-Disposition: attachment; filename=" ' . $sFileName . '"');
header('Content-Disposition: attachment; filename=' . $sFileName);

echo t('BACKUP VERIFICATION CODE - %site_url% | %0% area', $this->sMod) . "\r\n\r\n";
echo t('Code: %0%', $this->oAuthenticator->getCode($sSecret)) . "\r\n\r\n";
Expand Down

0 comments on commit 008dfa0

Please sign in to comment.