summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 202ba59)
raw | patch | inline | side by side (parent: 202ba59)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 13 Aug 2008 09:20:04 +0000 (09:20 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 13 Aug 2008 09:20:04 +0000 (09:20 +0000) |
-Fixed empty() checks for strings that may only consists of 0
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12204 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12204 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/mimetypes/class_mimetypeGeneric.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/mimetypes/class_mimetypeGeneric.inc b/gosa-plugins/goto/admin/mimetypes/class_mimetypeGeneric.inc
index c6e48657887daacda0a76f918476da7604ab5d41..436f5c8f4e4ed6047b6444bb62d496e395bca852 100644 (file)
/* Add gotoMimeFilePattern */
if(isset($_POST['AddNewFilePattern']) && isset($_POST['NewFilePattern'])){
if($this->acl_is_writeable("gotoMimeFilePattern")){
- $str = $_POST['NewFilePattern'];
- if(!empty($str)){
+ $str = trim($_POST['NewFilePattern']);
+ if($str != ""){
$this->use_gotoMimeFilePattern[] = $str;
}
}
if($this->acl_is_writeable("gotoMimeApplication")){
$str = "";
if(isset($_POST['NewApplicationSelect']) && !empty($_POST['NewApplicationSelect'])){
- $str = get_post("NewApplicationSelect");
+ $str = trim(get_post("NewApplicationSelect"));
}
if(isset($_POST['NewApplication']) && !empty($_POST['NewApplication'])){
- $str = get_post("NewApplication");
+ $str = trim(get_post("NewApplication"));
}
- if(!empty($str) && !in_array($str,$this->use_gotoMimeApplication)){
+ if($str != "" && !in_array($str,$this->use_gotoMimeApplication)){
$this->use_gotoMimeApplication[] = $str;
}
}
if($this->acl_is_writeable("gotoMimeEmbeddedApplication")){
$str = "";
if(isset($_POST['NewEmbeddedApplicationSelect']) && !empty($_POST['NewEmbeddedApplicationSelect'])){
- $str = get_post('NewEmbeddedApplicationSelect');
+ $str = trim(get_post('NewEmbeddedApplicationSelect'));
}
if(isset($_POST['NewEmbeddedApplication']) && !empty($_POST['NewEmbeddedApplication'])){
- $str = get_post('NewEmbeddedApplication');
+ $str = trim(get_post('NewEmbeddedApplication'));
}
- if(!empty($str) && !in_array($str,$this->use_gotoMimeEmbeddedApplication)){
+ if($str != "" && !in_array($str,$this->use_gotoMimeEmbeddedApplication)){
$this->use_gotoMimeEmbeddedApplication[] = $str;
}
}
function check()
{
$message = plugin::check();
- if(empty($this->cn)){
+ if($this->cn == "" ){
$message[] = msgPool::required(_("Name"));
}
if(!count($this->use_gotoMimeFilePattern)){