diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-12-14 12:05:45 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2011-12-14 12:05:45 +0400 |
| commit | 4fdb875944e9678a8deeadb75d748d7b6b4690d5 (patch) | |
| tree | e585eb949586ace3016dd0f11ead59e7be540fb4 | |
| parent | 6ca4f3c28b98074e1cabdbe6245af59ac8e9176f (diff) | |
fix labelops
| -rw-r--r-- | classes/rpc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/rpc.php b/classes/rpc.php index 272c25ef4..dbdca8a78 100644 --- a/classes/rpc.php +++ b/classes/rpc.php @@ -401,11 +401,11 @@ class RPC extends Protected_Handler { } function assigntolabel() { - return labelops(true); + return $this->labelops(true); } function removefromlabel() { - return labelops(false); + return $this->labelops(false); } function labelops($assign) { |