1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-27 06:11:29 +00:00

fix labelops

This commit is contained in:
Andrew Dolgov
2011-12-14 12:05:45 +04:00
parent 6ca4f3c28b
commit 4fdb875944

View File

@@ -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) {