Never mind, I found the issue and fixed it!
For those on 4.2.2 that are also getting this error message, here is the fix:
Error:
Quote:
Warning: Declaration of vBCms_Widget_cmsfcs::getHash() should be compatible with vBCms_Widget::getHash($widgetid = false, $nodeid = false) in ..../packages/vbcms/widget/cmsfcs.php on line 338
|
Open up that cmsfcs.php file, and scroll to the bottom. A few lines up, you should see
Quote:
protected function getHash($widgetid)
|
Change that line to read:
Quote:
protected function getHash($widgetid = false, $nodeid = false)
|
Voila!