I have drupal 6, i got the following error during installation:
Missing argument 2 for variable_get(), called in modules/selectbox/selectbox.module on line 12 and defined in /home/magrudys/public_html/latest/includes/bootstrap.inc on line 502.
I have drupal 6, i got the following error during installation:
Missing argument 2 for variable_get(), called in modules/selectbox/selectbox.module on line 12 and defined in /home/magrudys/public_html/latest/includes/bootstrap.inc on line 502.
Comments
Comment #1
sumaiyajaved commentedgot it
go to line if ($theme == variable_get('admin_theme'))
and make it
if ($theme == variable_get('admin_theme', NULL))
now further testing the module, hope it works (fingers crossed)
Comment #2
humansky commentedLet me know if your above code works and I will port it to the 6.x-1.x branch.
Comment #3
cobadger commentedI was experiencing the same error and used the change in comment #1; the error is no longer displaying.
Seems as though the code works as corrected.
Comment #5
humansky commented