From bf62d95908755fccdd229f8055a3d2eebd838828 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 20 Mar 2007 14:21:42 +0000 Subject: [PATCH] Some fixes git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@5840 594d385d-05f5-0310-b6e9-bd551577e9d8 --- html/themes/default/style.css | 29 ++++++++++++++++++++----- include/sieve/class_sieveElement_If.inc | 5 +++-- 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/html/themes/default/style.css b/html/themes/default/style.css index 841d2a002..4124aa3e2 100644 --- a/html/themes/default/style.css +++ b/html/themes/default/style.css @@ -1362,10 +1362,10 @@ textarea.sieve_vacation_input { table.sieve_allof_container { width:100%; - margin: 0px; border-spacing: 0px ; + margin: 0px; padding:0px; - border: solid 2px #CCCCCC; + border: solid 1px #999999; } /* Container */ @@ -1373,10 +1373,14 @@ td.sieve_allof_left { text-align:center; vertical-align: middle; width:35px; - background-color: #BDBDBD; + background-color: #CCCCCC; border: solid 0px #EEEEEE } +/* Container */ +td.sieve_allof_right { + background-color:#BDBDBD ; +} /************* * Sieve anyof @@ -1395,19 +1399,32 @@ td.sieve_anyof_left { text-align:center; vertical-align: middle; width:35px; - background-color: #BDBDBD; + background-color: #CCCCCC; border: solid 0px #EEEEEE } +/* Container */ +td.sieve_anyof_right { + background-color:#BDBDBD ; + border: solid 1px #AAAAAA; +} + /************* * Sieve Test Cases *************/ -table.sieve_test_case { +table.sieve_test_container { width:100%; + background-color:#EEEEEE; margin: 0px; border-spacing: 0px ; padding:0px; + border: solid 1px #AAAAAA; } - +table.sieve_test_case { + width:100%; + margin: 0px; + border-spacing: 0px ; + padding:0px; +} diff --git a/include/sieve/class_sieveElement_If.inc b/include/sieve/class_sieveElement_If.inc index 8431dce45..090880d6a 100644 --- a/include/sieve/class_sieveElement_If.inc +++ b/include/sieve/class_sieveElement_If.inc @@ -114,7 +114,7 @@ class sieve_if *******************/ case "true" : - case "fasle" : + case "false" : { /* Can't fail anyway */ break; @@ -127,6 +127,7 @@ class sieve_if default: { if(isset($data['LastError']) && !empty($data['LastError'])){ + print_a(array($data)); $ret[] = $data['LastError']; } } @@ -448,7 +449,7 @@ class sieve_if $tmp= array( "Inverse" => FALSE, "Match_type" => ":over", - "Value_List" => array(1,"M")); + "Value_List" => array("1M")); $tmp['LastError'] = ""; $data[$type] = $tmp; -- 2.30.2