gWorldz / get-simple-cms

Automatically exported from code.google.com/p/get-simple-cms
GNU General Public License v3.0
0 stars 0 forks source link

Site name encoding in backend and frontend #357

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The site name isn't rendered the same way in frontend and admin panel:
http://get-simple.info/forum/topic/4673/site-name-encoding-in-backend-and-fronte
nd/

Original issue reported on code.google.com by carnav on 6 Oct 2012 at 10:17

GoogleCodeExporter commented 9 years ago
To make the backend display the site name the way frontend function 
get_site_name does:

admin/template/include-nav.php, line 24, change:

cl($SITENAME);

to:

echo trim(stripslashes($SITENAME));

Original comment by carnav on 21 Oct 2012 at 8:07