Just installed this on D6.2 with PHP4
Got this:
Parse error: syntax error, unexpected '=', expecting ')' in /home/tulefog/public_html/sites/all/modules/quicktabs/quicktabs.module on line 150
I just had this problem with the Quotes Module here: http://drupal.org/node/245889
That other issue might be similar or not at all.

Comments

vegeneric’s picture

I just cut out the first '= NULL' in line 150 and I was able to get the module to work.

Line 150 before:
function quicktabs_form(&$form = NULL, $form_state = NULL) {

Line 150 after:
function quicktabs_form(&$form, $form_state = NULL) {

Not sure what else that might have broken, but I was able to build a few functional quicktabs no problem. No views 2.0 integration yet, but I guess views is still going through a lot of changes. Works well with aggregator.

Also, I was not able to change the style of my tabs... the settings page has no submit button!

katbailey’s picture

haha! Forgetting the submit button on the settings form - that's pretty embarrassing, but you gotta laugh... :-P
Ok, it's there now - and I've fixed that PHP4 bug so the latest dev snapshot should work fine now.

katbailey’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.