Fix libkolabxml error handling

This commit is contained in:
Thomas Bruederli 2012-06-06 10:22:51 +02:00
parent 8cb599bd96
commit ad59203f27

View file

@ -173,10 +173,10 @@ abstract class kolab_format
{
$ret = $log = false;
switch (kolabformat::error()) {
case kolabformat.NoError:
case kolabformat::NoError:
$ret = false;
break;
case kolabformat.Warning:
case kolabformat::Warning:
$ret = false;
$log = "Warning";
break;