Didn't work for me. This is from the subBlack theme from this site.
I found this line in function themefooter here:
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.