Warning: session_start(): open(/var/lib/php/sessions/sess_hd104idgj2okdr1npjumchols5, 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 bool web_hasLabelIC(WebNode node, S text) {
if (node != null) for (Lisp l : node.labels)
if (eqic(text, node.web.unparseLabel(l)))
true;
false;
}
static bool web_hasLabelIC(Pair p, S text) {
ret web_hasLabelIC(p.a.web.relation(p), text);
}
static bool web_hasLabelIC(WebNode a, WebNode b, S text) {
ret web_hasLabelIC(a.web.relation(a, b), text);
}