summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f2177bc)
raw | patch | inline | side by side (parent: f2177bc)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Dec 2010 14:12:13 +0000 (14:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 10 Dec 2010 14:12:13 +0000 (14:12 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.7@20537 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_acl.inc | patch | blob | history | |
gosa-core/setup/class_setupStep_Checks.inc | patch | blob | history | |
gosa-core/setup/class_setupStep_Schema.inc | patch | blob | history |
index 413bd91f58355e62b9adb3e838bba28e89a42e3e..60a4e65beb7f406ae4c0176f84346a9bd6c5da9b 100644 (file)
$this->sectionList->setHeight("120px");
$this->sectionList->setColspecs(array('200px','*'));
$this->sectionList->setHeader(array(_("Section"),_("Description")));
- $this->sectionList->setDefaultSortColumn(1);
+ $this->sectionList->setDefaultSortColumn(0);
$this->sectionList->setAcl('rwcdm'); // All ACLs, we filter on our own here.
$this->roleList = new sortableListing();
diff --git a/gosa-core/setup/class_setupStep_Checks.inc b/gosa-core/setup/class_setupStep_Checks.inc
index 85938910b00bf0a676ae7c1c2602f356fd740619..b3699d68b09bff84c8c7ee722c9aa6e0c7580190 100644 (file)
$M = TRUE;
$this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
+ /* Check for php5-curl support */
+ $N = msgPool::checkingFor("curl");
+ $D = _("GOsa requires this module to communicate with different types of servers and protocols.");
+ $S = msgPool::installPhpModule("php5-curl");
+ $R = is_callable("curl_init");
+ $M = TRUE;
+ $this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
+
/* Checing for iconv */
$N = msgPool::checkingFor("inconv");
$D = _("GOsa requires this module for the samba integration.");
diff --git a/gosa-core/setup/class_setupStep_Schema.inc b/gosa-core/setup/class_setupStep_Schema.inc
index 6353908c33d269ab427ac7c133b0a5d296d3e514..b58b9013705bc3c041af15b2153c0a4228efac2f 100644 (file)
// Detect Schema Info
$ldap = new ldapMultiplexer($ldap_l);
$ldap->cd($cv['base']);
- $objectclasses = $ldap->get_objectclasses();
+ $objectclasses = $ldap->get_objectclasses(TRUE);
// Check if we can find something
$ldap->set_size_limit(1);