Warning: session_start(): open(/var/lib/php/sessions/sess_a6kpokgj5uh0ru80pth524npjn, 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
sbool ctxExpandMacros_debug = true; static S ctxExpandMacros(S s, SS macros) { while true { S s2 = ctxExpandMacros_step(s, macros); if (eq(s, s2)) ret s; s = s2; } } static S ctxExpandMacros_step(S s, SS macros) { Pattern p = regexp("#([^#]+)#", s); while (m.find()) { print("Replacing " + m.group(1)); S key = m.group(1); S macro = macros.get(key); s = s.replace(m.group(), unnull(macro)); } ret s; }