• Resolved rmast

    (@rmast)


    I see the thread I posted to already had status ‘resolved’. That can be confusing, so I added this new thread:

    The new confirmation-hyperlink is not functioning well in Outlook 2007, while it is missing a slash between the domain name and the question mark.

    Please add a slash to the generated path before the question mark:

    knews.php line 336

    [ Moderator note: please wrap code in backticks or use the code button. ]

    if ($extra_params != '') {
     if (strpos($url_home, '?')===false) {
     $url_home .= '<strong>/</strong>?' . $extra_params;
     } else {
     $url_home .= '&' . $extra_params;
     }
     }

    https://www.ads-software.com/plugins/knews/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author creverter

    (@creverter)

    Better do this, (in order to prevent double slash):

    [ Moderator note: please wrap code in backticks or use the code button. ]

    if ($extra_params != '') {
    	if (strpos($url_home, '?')===false) {
    		if (substr($url_home, -1) != '/') $url_home .= '/';
    		$url_home .= '?' . $extra_params;
    	} else {
    		$url_home .= '&' . $extra_params;
    	}
    }

    next release will include this patch.

    Thanks!
    Carles Reverter.

    Plugin Author creverter

    (@creverter)

    Hello! The bug is solved in current release (1.5.2) later…

    regards,
    Carles Reverter.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Outlook 2007 issue with neutral confirmation link’ is closed to new replies.