Please help me. I was write own tag (plugin) and this plugin is work correctly, but generated this messages:
string(64) "Smarty error: unable to read resource: "globalcontent:navigacio"" string(64) "Smarty error: unable to read resource: "globalcontent:navigacio""
The navigacio is my navigation html blob bottom of the pages. I know several variables is restricted in the CMS, but my plugin dont use thiese (i think it

My plugin begin this:
Code: Select all
function smarty_cms_function_vivanetpartner($params, &$smarty)
{
$partner_host="localhost";
$partner_user="shark";
$partner_pass="49363947";
$partner_database="vivanet";
global $gCms;
$pageinfo=&$gCms->variables['pageinfo'];
$config=&$gCms->GetConfig();
$partner_conn=&ADONewConnection('mysql', 'menu');
$partner_conn->PConnect($partner_host, $partner_user, $partner_pass, $partner_database);
Can anybody help me? Thanx!