mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Correct dest_url value
This commit is contained in:
parent
1b32f83818
commit
b800cf239d
1 changed files with 3 additions and 1 deletions
|
@ -99,7 +99,9 @@ class Calendar extends EA_Controller
|
||||||
*/
|
*/
|
||||||
public function index(string $appointment_hash = ''): void
|
public function index(string $appointment_hash = ''): void
|
||||||
{
|
{
|
||||||
session(['dest_url' => site_url('backend/index' . (!empty($appointment_hash) ? '/' . $appointment_hash : ''))]);
|
session([
|
||||||
|
'dest_url' => site_url('calendar/index' . (!empty($appointment_hash) ? '/' . $appointment_hash : '')),
|
||||||
|
]);
|
||||||
|
|
||||||
$user_id = session('user_id');
|
$user_id = session('user_id');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue