Quote:
Originally Posted by kronnos
Thanks. i didnt know much what to do with that so i went looking for the ['ds'] in the file elsewhere but could not find anything. I even tried changing "if ( $awc_goal['extra'] == 2 )" to "if ( $awc_goal[0] == 2 )" and doing a bunch of other weird things to see how it impacts anything but didnt really chnage. I even deleted the entire first If statement and it kept giving me the same error at the start of the second if statement.
|
I think another possibility is something like $somevar[$someothervar]. I don't see that anywhere around line 296, but maybe the line number is wrong for some reason. (The string 'ds' does appear in a number of places, so it is a string that's being used in that code).
You could try putting
Code:
error_reporting(E_ALL & ~E_NOTICE & ~E_WARNING);
at the top of the file.