Undefined index on line 65
-
Hi,
I’m getting a undefined index error in debug mode.
You need to make the following change.
FILE: wp-filemanager.php
LINE: 65FROM:
if ($_GET['action'] == 'edit')
TO:
if (isset($_GET['action']) && $_GET['action'] == 'edit')
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Undefined index on line 65’ is closed to new replies.