View Single Post
  #5 (permalink)  
Old 06-21-2006, 07:23 AM
myrtletrees myrtletrees is offline
Junior Member
 
Join Date: May 2005
Posts: 242
READ MY POST!!!!!!!!!!!!!!!!!! :P

IF you do not have the 3.2 patch package and do not have the readme, here it is:

Quote:
/************************************************** **********************/
/* PHP-Nuke Patched 3.2 -- 2005 chatserv */
/* Nuke Patched DEV Team -- Evaders99 & Quake */
/* http://www.nukefixes.com -- http://www.nukeresources.com */
/************************************************** **********************/


Important notes relating to Nuke Patched 3.2:

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')) {

2- Additional changes for third party add-ons:
if ($mainfile == 1) {
should be changed to:
if (defined('NUKE_FILE')) {

if ($module == 1) {
should be changed to:
if (defined('MODULE_FILE')) {

if ($footer == 1) {
should be changed to:
if (defined('NUKE_FOOTER')) {

if ($header == 1) {
should be changed to:
if (defined('NUKE_HEADER')) {
__________________
http://www.barefootski.com/nuke/Attempt.gif
Education is the discovery of our ignorance
READ THIS!
Reply With Quote