As user p91 noticed (see thread http://get-simple.info/forum/topic/4490/...side-name/ ), the site name isn't rendered the same way in frontend and admin panel.
If you enter a site name like GS λ, in the frontend it is displayed as:
but in the backend (admin, login page...) as:
That's because get_site_name (admin/inc/theme_functions.php) echoes it with:
However, in the admin panel (admin/template/include-nav.php) it is echoed with:
I think GS dev team should decide which method to use for both cases.
If you decide to allow html in the site name, then IMO there should be a get_clean_site_name tag (like get_page_title vs get_page_clean_title). If not, it would not be needed.
If you enter a site name like GS λ, in the frontend it is displayed as:
Code:
GS λ
Code:
GS λ
That's because get_site_name (admin/inc/theme_functions.php) echoes it with:
Code:
trim(stripslashes($SITENAME))
Code:
cl($SITENAME)
I think GS dev team should decide which method to use for both cases.
If you decide to allow html in the site name, then IMO there should be a get_clean_site_name tag (like get_page_title vs get_page_clean_title). If not, it would not be needed.