diff options
author | friendica <info@friendica.com> | 2012-05-29 01:14:53 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-05-29 01:14:53 -0700 |
commit | 2eafa9a47519f9f35c5eb568cf4235c092c1dcce (patch) | |
tree | b0b1656b9b7c46f003e6910933d0f86b7a1fb6e3 /include/items.php | |
parent | 0241bd1fbf28e15daeb939bc14976cd2fd6d3251 (diff) | |
download | volse-hubzilla-2eafa9a47519f9f35c5eb568cf4235c092c1dcce.tar.gz volse-hubzilla-2eafa9a47519f9f35c5eb568cf4235c092c1dcce.tar.bz2 volse-hubzilla-2eafa9a47519f9f35c5eb568cf4235c092c1dcce.zip |
ability to only expire contacts, not self
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 4b79003f6..3fe977b6f 100644 --- a/include/items.php +++ b/include/items.php @@ -3082,7 +3082,7 @@ function item_expire($uid,$days) { // $expire_network_only = save your own wall posts // and just expire conversations started by others - $expire_network_only = get_pconfig($uid,'expire','expire_network_only'); + $expire_network_only = get_pconfig($uid,'expire','network_only'); $sql_extra = ((intval($expire_network_only)) ? " AND wall = 0 " : ""); $r = q("SELECT * FROM `item` |