diff options
author | Olaf Conradi <oohlaf@gmail.com> | 2013-09-20 13:03:22 -0700 |
---|---|---|
committer | Olaf Conradi <oohlaf@gmail.com> | 2013-09-20 13:03:22 -0700 |
commit | 7d0569f49b1f11187c54e7c8e5819e7b39174b9c (patch) | |
tree | cc03283bb6e2034b56d6a8dc66d1cb72722a6aef | |
parent | e6d93b251606e7261db3a5048cf730c2e69a28e3 (diff) | |
parent | 35993bcfecb12b4dfb8507b1989b1ddc3c2e4182 (diff) | |
download | volse-hubzilla-7d0569f49b1f11187c54e7c8e5819e7b39174b9c.tar.gz volse-hubzilla-7d0569f49b1f11187c54e7c8e5819e7b39174b9c.tar.bz2 volse-hubzilla-7d0569f49b1f11187c54e7c8e5819e7b39174b9c.zip |
Merge pull request #147 from oohlaf/fixes
Enable likes again on posts
-rw-r--r-- | include/ItemObject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index 681757a09..62a8c9c42 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -164,7 +164,7 @@ class Item extends BaseObject { ); } - if($conv->is_commentable()) { + if($this->is_commentable()) { $like = array( t("I like this \x28toggle\x29"), t("like")); $dislike = array( t("I don't like this \x28toggle\x29"), t("dislike")); if ($shareable) |