Warning: session_start(): open(/var/lib/php/sessions/sess_7lrjclsdj4ngr9cdk81g4hilln, 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 S html_addTargetBlank(S html) {
L tok = htmlTok(html);
for (int i = 1; i < l(tok); i += 2) {
S t = tok.get(i);
if (isTag(t, "a")) {
SS map = htmlParams(t);
if (map.containsKey("href")) {
map.put("target", "_blank");
tok.set(i, htag("a", map));
}
}
}
ret join(tok);
}