Warning: session_start(): open(/var/lib/php/sessions/sess_je68vk6kq4k99shgqtvopej68i, 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 ctxGetVar(S name) {
S value = null;
if (eq(name, "questioncount"))
value = str(ctxContext().conversationLength);
if (value == null)
value = ctxContext().vars.get(name);
if (value == null)
value = ctxContext().globals.get(name);
if (value == null && name.startsWith("MATCH") && isInteger(name.substring(5)))
value = get(ctxContext().matches, parseInt(name.substring(5))-1);
print("ctxGetVar " + name + " = " + sfu(value));
ret value;
}