- Code: Select all
PHP Errors
addons\memberslist\inc\memberslist.php
Notice line 68: Undefined index: url_path
Line 67-68 was:
- Code: Select all
// Set the js in the roster header
$roster->output['html_head'] .= '<script type="text/javascript" src="' . ROSTER_PATH . 'addons/' . $basename . '/js/sorttable.js"></script>'
Line 67-68 changed to:
- Code: Select all
// Set the js in the roster header
$roster->output['html_head'] .= '<script type="text/javascript" src="' . $addon['url_path'] . 'js/sorttable.js"></script>';