Commit 03c5c1da authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3659 Fixing PHP error in class tabs

Showing with 1 addition and 1 deletion
+1 -1
......@@ -149,7 +149,7 @@ class tabs
} else {
$baseobject->base = dn2base(get_userinfo()->dn);
}
if (is_object($baseobject->baseSelector)) { // For some plugins not yet migrated to simple plugin.
if (isset($baseobject->baseSelector) && is_object($baseobject->baseSelector)) { // For some plugins not yet migrated to simple plugin.
$baseobject->baseSelector->setBase($baseobject->base);
}
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $baseobject->base, 'Fixed base');
......
  • bmortier @bmortier

    mentioned in issue #1214 (closed)

    By bmortier on 2017-09-02T15:17:58 (imported from GitLab)

    ·

    mentioned in issue #1214 (closed)

    By bmortier on 2017-09-02T15:17:58 (imported from GitLab)

    Toggle commit list
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