It shouldn't have to change.
if $result[0]="0" then return 0
Not sure why it's using that instead of the below since $result is just used as a string and not an array.
if $result="0" then return 0
The array isn't created till line 57.
$array = StringSplit($result[0],"|")
Let me know if your seeing something i'm not.