$tempSnippetParams = split($splitter, $tempSnippetParams);to
$tempSnippetParams = explode($splitter, $tempSnippetParams);
To fix the "Deprecated: Assigning the return value of new by reference is deprecated in /home/<username>/public_html/manager/includes/browsercheck.inc.php on line 19" when opening the manager, change
$client =& new phpSniff($GET_VARS['UA'],$sniffer_settings);to
$client = new phpSniff($GET_VARS['UA'],$sniffer_settings);(thanks Cris.D for the BrowserCheck fix)
To fix the "Deprecated: Function split() is deprecated in /home/<username>/public_html/manager/actions/static/files.static.action.php on line X" (where X = five line numbers) when opening the File Manager, change the following
all instances of split( to explode( - do a search and replace, or change on line 47, 48, 50, 52, 53










