Fix to admin-controller.php
-
Line 318 of admin-controller.php has
$root_relative_path = '..' . DIRECTORY_SEPARATOR . '.. ' . DIRECTORY_SEPARATOR;
Note the space after the second ..
Should be:
$root_relative_path = '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR;
- The topic ‘Fix to admin-controller.php’ is closed to new replies.