Minor patches
Posted: Mon Nov 26, 2007 9:03 pm
Hi,
I have just upgraded my site to 1.2.1. Great work again! Just two patches that I did to make my site XHTML 1.1 valid.
In the search module I needed to modify the template to:
And in the index.php file a changed I added the following to set the right Mime-type in the header:
Finaly I have a strange problem in the Tags page of the admin panel. Everything is displayed twice.
I have just upgraded my site to 1.2.1. Great work again! Just two patches that I did to make my site XHTML 1.1 valid.
In the search module I needed to modify the template to:
Code: Select all
{$startform}
<div>{$label}{$inputbox}<input name="submit" value="{$submittext}" type="submit" /></div>
{if isset($hidden)}{$hidden}{/if}
{$endform}
Code: Select all
// Set default content type to xhtml if accepted
if(strpos($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml') > 0 ||
$_SERVER['HTTP_ACCEPT'] == '')
$gCms->variables['content-type'] = 'application/xhtml+xml';