Warning: session_start(): open(/var/lib/php/sessions/sess_u9hluhcgkfqaop7e1vl04ejg5a, 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
!636
!include #1000934 // class Q
static void reportToChat(final S s) {
reportToChat(s, false);
}
static void reportToChat(final S s, boolean silent) {
Class javax = getJavaX();
if (javax != null) {
call(javax, "reportToChat", s, silent);
return;
}
if (s == null || s.length() == 0) return;
if (!silent)
print("reportToChat: " + quote(s));
reportToChat_getChatThread().add(runnable {
startChatServerIfNotUp();
waitForChatServer();
chatSend(s);
});
}
static Q reportToChat_q;
static Q reportToChat_getChatThread() {
if (reportToChat_q == null)
reportToChat_q = new Q("reportToChat", true);
return reportToChat_q;
}