Concerning
Other Improvements in Geeklog 1.6.0:
1) Is there an API for canonical links? I just did:
Text Formatted Code
$headercode = '<link rel="canonical" href="' . $url . '"' . XHTML . '>' . LB;
$display .= COM_siteHeader('menu', $title, $headercode);
2) COM_output is not backward compatible. So plugin authors, be sure to use this:
Text Formatted Code
if (function_exists(COM_output))
COM_output($display);
else
echo $display;