Status: offline

LWC

Forum User
Full Member
Registered: 02/19/04
Posts: 818
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;

Status: offline

Laugh

Site Admin
Admin
Registered: 09/27/05
Posts: 1475
To make debuging plugins a bit easier (for those of us who like to add echo statements) I would suggest this.

Text Formatted Code

if (function_exists(COM_output) AND $_CONF['rootdebug']==false) {
   COM_output($display);
} else {
   echo $display;
}

One of the Geeklog Core Developers.