mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 08:59:28 +00:00
Bugfix
This commit is contained in:
@@ -29,6 +29,8 @@ class Redirect extends FHC_Controller
|
||||
|
||||
public function redirectByToken($token)
|
||||
{
|
||||
var_dump($token);
|
||||
|
||||
if (isset($token))
|
||||
{
|
||||
redirect($this->config->item('addons_aufnahme_url') . '?token=' . $token);
|
||||
|
||||
@@ -43,7 +43,7 @@ class ViewMessage extends CI_Controller
|
||||
{
|
||||
$data = array (
|
||||
'message' => $msg->retval[0],
|
||||
'href' => $this->ci->config->item('message_html_view_url')
|
||||
'href' => APP_ROOT . $this->config->item('redirect_view_message_url') . $token
|
||||
);
|
||||
|
||||
$this->load->view('system/messageHTML.php', $data);
|
||||
|
||||
@@ -5,5 +5,5 @@
|
||||
B: <?php echo $message->body; ?>
|
||||
</div>
|
||||
<div>
|
||||
<a href="<?php echo $href.$message->token; ?>">Reply</a>
|
||||
<a href="<?php echo $href; ?>">Reply</a>
|
||||
</div>
|
||||
Reference in New Issue
Block a user