Possible bug in short.php
My preview was not working after updating and then I discovered my webversion was not working either. After some debugging I was able to locate what I assume to be a bug because I was able to fix it.
Line 27 of short.php is:
intval($in, 36);
I think it should be:
return intval($in, 36);
This fixed resolved my issues.
Thanks,
Dan
This discussion has been closed.
Comments
Hi Dan,
Thanks for posting this. It's been addressed in 1.1.5.1 in which I just released http://sendy.co/get-updated
Ben