Results 1 to 2 of 2

(array) missing from vBSEO :: Conditional Signatures hook at postbit_display_complete

This is a discussion on (array) missing from vBSEO :: Conditional Signatures hook at postbit_display_complete within the Bug Reporting forums, part of the vBSEO SEO Plugin category; In the plugin: vBSEO :: Conditional Signatures postbit_display_complete there is a line: Code: $_vbseo_pg = array_merge( $this->post['usergroupid'], explode(',',$this->post['membergroupids']) ); It ...

  1. #1
    Member
    Real Name
    David
    Join Date
    May 2008
    Posts
    35
    Liked
    0 times

    (array) missing from vBSEO :: Conditional Signatures hook at postbit_display_complete

    In the plugin: vBSEO :: Conditional Signatures postbit_display_complete
    there is a line:
    Code:
    $_vbseo_pg = array_merge( $this->post['usergroupid'], 
    explode(',',$this->post['membergroupids'])
    );
    It should be:
    Code:
    $_vbseo_pg = array_merge((array)$this->post['usergroupid'], 
    explode(',',$this->post['membergroupids'])
    );
    Note the (array) after the array_merge - this must be present or you will get an array merge warning in php5

  2. #2
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    168 times
    Which version of vBSEO Conditional Signatures do you refer to? That was fixed long ago in v1.4 (current version is 1.4.2: https://www.vbseo.com/downloads/ ).

Similar Threads

  1. vBSEO Conditional Signatures
    By Juan Muriente in forum General Discussion
    Replies: 95
    Last Post: 05-02-2012, 11:31 PM
  2. [How To] vBSEO Conditional Signatures
    By Danny Bembibre in forum Español
    Replies: 2
    Last Post: 05-22-2008, 01:12 PM
  3. vBSEO Conditional Signatures Nedir?
    By menes in forum Türkçe
    Replies: 14
    Last Post: 02-14-2008, 02:28 PM
  4. Download vBSEO Conditional Signatures 1.4.2
    By showboard.de in forum Deutsch
    Replies: 1
    Last Post: 10-28-2006, 07:01 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •