Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 2167

Extension Writers Discussion • html in site description

$
0
0
Hello

For years I have used this edit of includes/functions.php to be able to display html in sitename and site_desc
Find:

Code:

'SITENAME'=> $config['sitename'],'SITE_DESCRIPTION'=> $config['site_desc'],
Replace with:

Code:

'SITENAME'=> html_entity_decode($config['sitename']),'SITE_DESCRIPTION'=> html_entity_decode($config['site_desc']),
However it would be nice to be able to achieve this without editing core files.

I have a custom listener for the little things.
So I added this, but with no luck:

Code:

public function index_modify_page_title(){$this->template->assign_vars(['SITENAME'=> html_entity_decode($this->config['sitename']),'SITE_DESCRIPTION'=> html_entity_decode($this->config['site_desc']),]);}
Any ideas on how I can do this?

Statistics: Posted by Stoker 4.0 — Sat Mar 01, 2025 8:01 am



Viewing all articles
Browse latest Browse all 2167

Trending Articles