View Single Post
  #10 (permalink)  
Old 01-23-2008, 10:30 AM
Geoserv Geoserv is offline
Banned
 
Join Date: Feb 2007
Location: Canada
Posts: 849
Thanks: 74
Thanked 49 Times in 45 Posts
In jquery_init.php it references a template:

Quote:
<?php
if(defined('mnminclude')){
include_once('jquery_settings.php');

// tell pligg what pages this modules should be included in
// pages are <script name> minus .php
// index.php becomes 'index' and shakeit.php becomes 'shakeit'
$include_in_pages = array('all');
$do_not_include_in_pages = array('admin_config');

if( do_we_load_module() ) {

module_add_action_tpl('tpl_pligg_pre_css_and_js', jquery_tpl_path . 'pligg_pre_title.tpl');

}
}
?>
This is the file that seems to be causing the issue, if I delete the lines:

Quote:
if( do_we_load_module() ) {

module_add_action_tpl('tpl_pligg_pre_css_and_js', jquery_tpl_path . 'pligg_pre_title.tpl');

}
the error goes away.

Geoserv.
Reply With Quote