You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With rs_tooltip correctly installed and active, recipients of external links are prompted to login immediately when hovering over an image. Tested on RS 8.5 and RS 8.6. Possible solution, add a check for k= component of an external share before firing the all.php hooks.
Add this around code in all.php after opening tag
if (strpos($_SERVER['REQUEST_URI'], "k=") == false) {
}
Have tested the above and it achieves the desired result - internal users still have functionality, external link recipients are not prompted for login.
The text was updated successfully, but these errors were encountered:
With rs_tooltip correctly installed and active, recipients of external links are prompted to login immediately when hovering over an image. Tested on RS 8.5 and RS 8.6. Possible solution, add a check for
k=
component of an external share before firing the all.php hooks.Add this around code in all.php after opening tag
Have tested the above and it achieves the desired result - internal users still have functionality, external link recipients are not prompted for login.
The text was updated successfully, but these errors were encountered: