Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter alexbrj

    (@alexbrj)

    this is the snippet of code where the error message is coming from:

    function clean_keyword_list( $keywords ) {
    		$small_keywords = array();
    		if ( !empty( $keywords ) )
    			foreach ( $keywords as $word ) {
    				$small_keywords[] = trim( $this->strtolower( $word ) );
    			}
    		return array_unique( $small_keywords );
    	}

    Line 3029 is foreach ( $keywords as $word ) {

    Can someone help me, please?

    Thread Starter alexbrj

    (@alexbrj)

    Uninstalled this plugin.

    Hi Alex,

    We’ll be releasing a patch for this, try using this patched function instead and see if it fixes the issue:

    function clean_keyword_list( $keywords ) {
    		$small_keywords = array();
    		if ( !is_array( $keywords ) ) $keywords = $this->keyword_string_to_list( $keywords );
    		if ( !empty( $keywords ) )
    			foreach ( $keywords as $word ) {
    				$small_keywords[] = trim( $this->strtolower( $word ) );
    			}
    		return array_unique( $small_keywords );
    }

    Brilliant! It works! Thanks so much for the quick tun around.
    This plugin’s pretty kick @$$ too!

    Cheers,
    Rob

    This is my problem, I will try 🙂

    Plugin Support Steve M

    (@wpsmort)

    Hi Arief,

    Please let us know if it works or doesn’t work for you.

    It works! Thanks

    Hi,

    Is an update rolling out for this plugin?
    The last update broke something on my website “aioseop class.php on line 3029”
    Can I roll back the install?

    Plugin Support Steve M

    (@wpsmort)

    The bug fix release for this will be out today.

    Awesome news @wpsmort.
    Thank you.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘error from the last update’ is closed to new replies.