diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Plugins.md | 4 | ||||
-rw-r--r-- | doc/plugins.bb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/Plugins.md b/doc/Plugins.md index 7d802fc5c..90ff0fb7d 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -101,8 +101,8 @@ Let's go ahead and add some code to implement our post_local hook handler. if(local_channel() != $item['uid']) /* Does this person own the post? */ return; - if(($item['parent']) || ($item['item_restrict'])) { - /* If the item has a parent, or item_restrict is non-zero, this is a comment or something else, not a status post. */ + if(($item['parent']) || (! is_item_normal($item))) { + /* If the item has a parent, or isn't "normal", this is a comment or something else, not a status post. */ return; } diff --git a/doc/plugins.bb b/doc/plugins.bb index fdabbb7ab..f74276038 100644 --- a/doc/plugins.bb +++ b/doc/plugins.bb @@ -97,8 +97,8 @@ Let's go ahead and add some code to implement our post_local hook handler. if(local_channel() != $item['uid']) /* Does this person own the post? */
return;
- if(($item['parent']) || ($item['item_restrict'])) {
- /* If the item has a parent, or item_restrict is non-zero, this is a comment or something else, not a status post. */
+ if(($item['parent']) || (! is_item_normal($item))) {
+ /* If the item has a parent, or is not "normal", this is a comment or something else, not a status post. */
return;
}
|