Warning: session_start(): open(/var/lib/php/sessions/sess_lt1fpqo1a7rp8il6jofegt24e8, 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
static void editSnippetVerbose(S id, S text) {
print("Trying to edit snippet " + id + " with standard credentials (" + standardCredentialsUser() + "), new chars= " + l(text));
editSnippet(id, text);
print("Edit successful!");
}
static void editSnippetVerbose(S id, S text, S user, S pass) {
print("Trying to edit snippet " + id + " as user " + user + (nempty(pass) ? " (+pw)" : " (no pw)";
editSnippet(id, text, user, pass);
print("Edit successful!");
}