Browse Source

fix: details in email form routine

master
Dom SP 3 years ago
parent
commit
ce3ae41793
2 changed files with 4 additions and 3 deletions
  1. +3
    -2
      app/controller/email.php
  2. +1
    -1
      app/modules/filesinfolders.php

+ 3
- 2
app/controller/email.php View File



$c = $this->data['private']['emailconfig']; $c = $this->data['private']['emailconfig'];
$template = substr($this->path . $this->data['private']['template'],10);
$template = substr($this->path,strlen($f3->get('CONTENT_BASE'))+2) . $this->data['private']['template'];
$f3->set('fields', $this->data['fields']); $f3->set('fields', $this->data['fields']);


} }


if ($success) { if ($success) {
$f3->reroute("/email/success?email=".urlsafe_b64encode($email));
$f3->reroute("/email/success?email=".urlsafe_b64encode($email)."&lang="$f3->get('LANG'));
} else { } else {
#$f3->reroute("/email/error"); #$f3->reroute("/email/error");
echo \Template::instance()->render($template,'text/html'); echo \Template::instance()->render($template,'text/html');

+ 1
- 1
app/modules/filesinfolders.php View File

if ($v['type'] == 'custom') { if ($v['type'] == 'custom') {
$fields[$k]['template'] = sprintf( $fields[$k]['template'] = sprintf(
"%s%s", "%s%s",
substr($this->folder,strlen($f3->get('CONTENT_BASE'))), //assumens content folder is content
substr($this->folder,strlen($f3->get('CONTENT_BASE'))),
$v['template'] $v['template']
); );
} }

Loading…
Cancel
Save