Viewing 1 replies (of 1 total)
  • aanthony –

    I see the developer has been aware of this bug for at least 8 months but hasn’t yet implmeneted a fix.

    I’ll log another support thread to try to get the attention of the developer, but you just need to add isset before it’s used.

    FILE: wp-filemanager.php
    LINE: 65

    FROM:

    if ($_GET[‘action’] == ‘edit’)

    TO:

    if (isset($_GET[‘action’]) && $_GET[‘action’] == ‘edit’)

    The developer correctly did this in other areas of the plugin and must have just forgotten for this line.

    ** this relates only to the ‘indefined index’ error **

Viewing 1 replies (of 1 total)

The topic ‘Throwing me error’ is closed to new replies.