Commit ea10bfc0 authored by mcramer's avatar mcramer
Browse files

Bugfix: app->tform is not defined on remoting api

parent 94d2cf4c
......@@ -50,7 +50,7 @@ $form["auth_preset"]["perm_user"] = 'riud'; //r = read, i = insert, u = update,
$form["auth_preset"]["perm_group"] = 'riud'; //r = read, i = insert, u = update, d = delete
$form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete
$auth_sql = $app->tform->getAuthSQL('r', 'web_domain');
$auth_sql = (isset($app->tform) ? $app->tform->getAuthSQL('r', 'web_domain') : '1');
$form["tabs"]['user'] = array (
'title' => "Folder",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment