|
grrrr -
08-21-2008, 11:31 PM
... found it after searching some more on a diiferent thread:
1- If you want right side blocks to appear in third party add-ons change:
In Modules:
index = 1;
to:
define('INDEX_FILE', true);
In Themes:
if ($index == 1) {
to:
if (defined('INDEX_FILE')) {
yay search!
|