]> granicus.if.org Git - icinga2/commitdiff
Rename 'object' to 'obj' in filters
authorGunnar Beutner <gunnar@beutner.name>
Sat, 7 Nov 2015 09:01:07 +0000 (10:01 +0100)
committerGunnar Beutner <gunnar@beutner.name>
Sat, 7 Nov 2015 09:01:07 +0000 (10:01 +0100)
refs #9077

doc/9-icinga2-api.md
lib/remote/filterutility.cpp

index 5b770089b7a7d8116e0bdef885cc733ef3a3ffcd..9aa6f0764d909f461649ecdde529ef1c7c188ca2 100644 (file)
@@ -274,7 +274,7 @@ For example when querying objects of type `Host` the variable in the filter expr
 `host`. Additionally related objects such as the host's check command are also made available
 (e.g., via the `check_command` variable).
 
-The object is also made available via the `object` variable. This makes it easier to build
+The object is also made available via the `obj` variable. This makes it easier to build
 filters which can be used for more than one object type (e.g., for permissions).
 
 > **Note**
index a0e51f8511722bbe1d8ae9ab5e496e1b910cdc76..aa5e6417b6144f2228bf13154f9a4e272e00a1ec 100644 (file)
@@ -112,7 +112,7 @@ bool FilterUtility::EvaluateFilter(ScriptFrame& frame, Expression *filter,
        } else
                vars = frame.Self;
 
-       vars->Set("object", target);
+       vars->Set("obj", target);
        vars->Set(varName, target);
 
        for (int fid = 0; fid < type->GetFieldCount(); fid++) {