Warning: session_start(): open(/var/lib/php/sessions/sess_7qjmq25jagh4rvmf7ne3l9ioh0, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// appends a new line with computer id and signature
static S signWithComputerIDAndDate(S s) {
S computerID = getComputerID();
s = rtrim(s) + "\n\n" + "-" + computerID() + ", " + localDateWithMilliseconds() + " (" + localTimeZone().getDisplayName(false, SHORT) + ")";
s = fromLines(toLines(s));
S signature = s + "sig: " + getMySignatureForText(s);
signature = fromLines(toLines(signature));
ret signature;
}