optionslib->get_theme(); $data['logo'] = $this->paths->cache_buster('/assets/logo/'.$this->optionslib->get_logo('header_logo').'.png'); $data['heading'] = __("Page Not Found"); $data['message1'] = __("QRZ? ... no reply."); $data['message2'] = __("Nobody is transmitting on this frequency."); $language = function_exists('current_language') ? current_language() : null; $data['language'] = $language ?: ['code' => 'en', 'direction' => 'ltr']; // Keep the HTTP status correct (404_override otherwise yields 200). $this->output->set_status_header(404); $this->load->view('errors/html/error_404', $data); } }