Confirmed. HTML comes up something like the following.
Code:
<title>"Joomla Development"</title>
The sitename is stored in the database configuration.php as expected, however. This seems to be a rendering issue.
tcp
--edit
Tracked down the issues of quotes to JSite::getParams() ( line 226 ).
Code:
$title = $this->getCfg('sitename' );
In the configuration registry ( use JFactory::getConfig() ) the site name is encoded already.
Quote:
"Joomla Development"
I'm assuming that this is the expected behavior. The title is later assigned to the document in JSite::dispatch ( line 121 ).
Code:
$document->setTitle( $params->get('page_title') );
One possible solution is to decode the page title before it is assigned to the document.
tcp