Skip to content

Commit

Permalink
dev: Fixed deprecated warning on split function
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@8767 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
mennodekker committed May 31, 2010
1 parent 5b76c7b commit 9a16860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/pchart/pchart/pChart.class
Expand Up @@ -286,7 +286,7 @@
$buffer = fgets($handle, 4096);
$buffer = str_replace(chr(10),"",$buffer);
$buffer = str_replace(chr(13),"",$buffer);
$Values = split($Delimiter,$buffer);
$Values = explode($Delimiter,$buffer);
if ( count($Values) == 3 )
{
$this->Palette[$ColorID]["R"] = $Values[0];
Expand Down

0 comments on commit 9a16860

Please sign in to comment.