[low] /doc/about tells: "you can post small (0 chars or less) text notices" -> 0 seems not correct
[ https://bugz.foocorp.net/T8 ]
Reported by : BobJonkman - http://sn.jonkman.ca/bobjonkman
From http://status.net/open-source/issues/3450
current text:
If you register for an account, you can post small (0 chars or less) text notices about yourself,
example: https://loadaverage.org/doc/about
GS version 1.1.1 alpha (?)
example: http://statusnet.skilledtests.com/doc/about
SN version 1.0.0
from source code:
If you register for an account, you can post small (%%site.textlimit%% chars or less) text notices about yourself,
Comments from postblue
The code have the expected output: the textlimit is on unlimited ("0" in the admin panel) so the "0 chars or less".
If you want it best, I think you would have to catch an exception (0) (I'm not an expert in PHP, not even some lame dev, so take it as a suggestion).
IF "%%site.textlimit%% == 0"
DISPLAY "If you [register](%%action.register%%) for an account, you can post text notices (no chars limit!) about yourself, (...)"
ELSE
DISPLAY "If you [register](%%action.register%%) for an account, you can post small (%%site.textlimit%% chars or less) text notices about yourself, (...)"