• japsen

    (@japsen)


    Hi,

    When looking into my error log I noticed thousands of notices: “Notice: Undefined variable: mobile_rel_link”
    If you google this error message, you actually find many wordpress websites that are having the same issue and that are displaying the error message on their frontends.

    The fix for this issue is should quite easy. Can you replace
    if ( $mobile_rel_link == '' )

    with

    if ( empty( $mobile_rel_link ) )
    on line 328, class-emr.php

    Thanks in advance

    ps. I spent some time trying to figure out how I could create a pull request with this minor change; but couldn’t manage to checkout this repo in my Sourcetree. I guess it doesn’t work with SVN

    • This topic was modified 4 years ago by japsen.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author uniquelylost

    (@uniquelylost)

    Hi,

    Thanks for reporting. v4.5 that was just released includes the fix you mentioned, quite a few others, and compatibility up to PHP 7.4.

Viewing 1 replies (of 1 total)
  • The topic ‘Notice: Undefined variable: mobile_rel_link’ is closed to new replies.