atomizer / muledump

all your mules are belong to you
84 stars 144 forks source link

Catch error on StringReverse function missing, fixes #54 #55

Closed Nightfirecat closed 10 years ago

Nightfirecat commented 10 years ago

For reference: #54

Effectively changed the previous

$binlength = StringReverse($binlength)

to

try {
    $binlength = StringReverse($binlength)
} catch {
    $binlength = _StringReverse($binlength)
}