From 6f08238b60f57e31ec14022825d0320c79662383 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Tue, 23 Jul 2024 14:55:55 +0200 Subject: [PATCH] fix url --- application/controllers/Widgets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Widgets.php b/application/controllers/Widgets.php index 81e51df35..c8afd5a09 100644 --- a/application/controllers/Widgets.php +++ b/application/controllers/Widgets.php @@ -57,7 +57,7 @@ class Widgets extends CI_Controller { $slug = $this->security->xss_clean($this->input->get('slug')); if ($slug != null) { - $data['logo_url'] = site_url() . '/visitor/' . $slug; + $data['logo_url'] = base_url() . 'index.php/visitor/' . $slug; } else { $data['logo_url'] = 'https://github.com/wavelog/wavelog'; }