summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-14 12:05:45 +0400
committerAndrew Dolgov <[email protected]>2011-12-14 12:05:45 +0400
commit4fdb875944e9678a8deeadb75d748d7b6b4690d5 (patch)
treee585eb949586ace3016dd0f11ead59e7be540fb4 /classes
parent6ca4f3c28b98074e1cabdbe6245af59ac8e9176f (diff)
fix labelops
Diffstat (limited to 'classes')
-rw-r--r--classes/rpc.php4
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) {