Closed (fixed)
Project:
Chaos Tool Suite (ctools)
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
1 May 2009 at 16:23 UTC
Updated:
3 Jan 2014 at 00:29 UTC
Jump to comment: Most recent
Comments
Comment #1
merlinofchaos commentedUgh. Go to line 26 of that file and remove the ' + $base'. I checked in this fix to CVS.
Comment #2
bredi commentedYep that fixed it. Thanks!
just to clarify for others....
edit modules/ctools/views_content/views_content.module on line 26
only remove +$base
old--> ) + $base;
new--> );
Hope this helps someone.
Comment #3
jennib commentedThanks so much for posting this--was having the same problem and this did the trick!
Comment #4
lightlisha commentedI also got the error after updating ctools: Fatal error: Unsupported operand types in /sites/all/modules/ctools/views_content/views_content.module on line 26
I could only access update.php on the site.
But changing line 26 of the views_content.module file also worked for me. Thank you.