
Originally Posted by
llynix
Somethings gone wrong and I think I traced it back to Jquery Lightbox. [snip]
I tried hacking it but nothing happened. Would appreciate any help.
Anthony
Turns out I was hacking the wrong place. If I go back to the original code in this section everything seems to work fine.
Code:
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
*/
$directory_array = $template->get_template_part($page_directory, '/^jscript_/');
while(list ($key, $value) = each($directory_array)) {
/**
* include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
* These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
*/
// $jscript_files_to_load[$value] = -100;
require($page_directory . '/' . $value); echo "\n";
}