View Single Post
Old
  (#7 (permalink))
Hawkaida
Junior Member
 
Status: Offline
Posts: 1
Join Date: Mar 2009
03-21-2009, 12:52 AM

Didn't work for me. This is from the subBlack theme from this site.
I found this line in function themefooter here:

Code:
if ($index == 1) }
Changed it to this:

Code:
if ($defined(INDEX_FILE)) }
...and did not see any changes at all.

Changed it to this:

Code:
if (defined(INDEX_FILE)) }
...and that did nothing as well.

EDIT.

I should've searched the forums better. I did search, but didn't find what I was looking for. Finally, I did a more detailed search and found this post:

Quote:
Hello Gypskying,

I highly recommend you dont use v8.1 either it has no security, I recomend using 7.6 from RavenPhpScripts plus they have over 10,000 fixes that includes loads of security too !

Although, I am not your father so you can find the fix located below....

///NO RIGHT SIDE BLOCKS FIX///

Open up the theme.php of the theme you wish to fix. OPEN AND FIND:
Code:

if ($index == 1) {

REPLACE WITH

Code:

if (defined('INDEX_FILE')) {
This edit fixed my issue. BTW, I use PHPNuke v7.9.

Last edited by Hawkaida; 05-15-2009 at 02:53 AM. Reason: Found related post that fixed issue.
   
Reply With Quote