summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 70ca514)
raw | patch | inline | side by side (parent: 70ca514)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 May 2010 07:41:55 +0000 (07:41 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 11 May 2010 07:41:55 +0000 (07:41 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18326 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/systems/ppd/class_ppdManager.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/systems/ppd/class_ppdManager.inc b/gosa-plugins/goto/admin/systems/ppd/class_ppdManager.inc
index 15a9106d007136ed7726c39ff7d841cc4fe4ddaa..9f93d6c099b648461d11500511b13e2bd492abfb 100644 (file)
var $useGzip = true;
- function ppdManager($path)
- {
- global $config;
- $value =$config->get_cfg_value("core","ppdGzip","true");
- if(preg_match('/false/i',$value)){
- $this->useGzip = false;
- }
-
- if(is_dir($path)){
- $this->path= $path;
- }elseif(is_link($path) && (is_dir(readlink($path)))) {
- $this->path= $path;
- } else {
- msg_dialog::display(_("PPD manager error"), sprintf(_("The specified path '%s' does not exist."),$path), ERROR_DIALOG);
- return (false);
- }
-
+ function ppdManager($path)
+ {
+ global $config;
+ if($config->boolValueIsTrue("core","ppdGzip")){
+ $this->useGzip = false;
+ }
- }
+ if(is_dir($path)){
+ $this->path= $path;
+ }elseif(is_link($path) && (is_dir(readlink($path)))) {
+ $this->path= $path;
+ } else {
+ msg_dialog::display(_("PPD manager error"), sprintf(_("The specified path '%s' does not exist."),$path), ERROR_DIALOG);
+ return (false);
+ }
+ }
function findPPD($path)