summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 02e3056)
raw | patch | inline | side by side (parent: 02e3056)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 18 Apr 2008 08:08:24 +0000 (08:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 18 Apr 2008 08:08:24 +0000 (08:08 +0000) |
-Added sorting for kernel lists
-Removed obsolete check
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10548 594d385d-05f5-0310-b6e9-bd551577e9d8
-Removed obsolete check
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10548 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/systems/goto/class_workstationStartup.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/systems/goto/class_workstationStartup.inc b/gosa-plugins/goto/admin/systems/goto/class_workstationStartup.inc
index e863ec7f59772cedd2fb3fd94171199a5b9b6590..4b3164c40fb27f7d8860505b0f7930d793f33135 100644 (file)
}
}
- if (($this->attrs['gotoBootKernel'] == "default-inherited") || ($this->attrs['gotoBootKernel'] == "%default%")){
+ if ($this->attrs['gotoBootKernel'] == "default-inherited"){
$this->attrs['gotoBootKernel']= array();
}
$this->cache['KERNELS'][$release][$kernel]=$kernel;
}
}
+ ksort($this->cache['KERNELS'][$release]);
}