No matter what you put in the custom configuration for the Block (only ) component, the default (site hosted upon) URL is sent.

Comments

emarkham’s picture

Priority: Normal » Major

ok, so i don't know php or drupal coding /dev very well, (though I've coded in Ada83, C, C++, assembly..... ) I think the developer doesn't really implemnt the block api very well at all. nothing about the block config is being saved, or recalled from variables in the code.

Luckily, I can hard code what I really wanted, but. this feature is really not good.

eduardo barros’s picture

hello
i'm having the same issue.
did tou find any solution for this problem?
thank you.

marktheshark’s picture

Confirming same issue...

marktheshark’s picture

Actually the fix is simple:

	variable_set('fblikebutton_block_url', $edit['fblikebutton_block_url']);

should be added to:

case 'save':
      if ($delta == 0) {
        variable_set('fblikebutton_bl_layout', $edit['fblikebutton_bl_layout']);
        variable_set('fblikebutton_bl_show_faces', $edit['fblikebutton_bl_show_faces']);
        variable_set('fblikebutton_bl_action', $edit['fblikebutton_bl_action']);
        variable_set('fblikebutton_bl_font', $edit['fblikebutton_bl_font']);
        variable_set('fblikebutton_bl_color_scheme', $edit['fblikebutton_bl_color_scheme']);
        variable_set('fblikebutton_bl_language', $edit['fblikebutton_bl_language']);
      }
      break;

in file fblikebutton.module

Worked for me.

marktheshark’s picture

Status: Active » Needs review

Can someone get this fix committed?

marktheshark’s picture

Can we get any feedback from the maintainer?

gvso’s picture

Issue summary: View changes
Status: Needs review » Closed (won't fix)

We are not fixing this issue as Drupal 6 has reached end of life