diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-30 14:31:01 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-30 14:31:01 +0200 |
commit | dfb3ee6e29b6943f86ec75af12db5a1422a7e1dd (patch) | |
tree | 881bfda1859cc88341dba79e8f6690fbd62ddd05 /include/conversation.php | |
parent | 41617ee987d9153ba9598b6c095a789d0998dd3d (diff) | |
download | volse-hubzilla-dfb3ee6e29b6943f86ec75af12db5a1422a7e1dd.tar.gz volse-hubzilla-dfb3ee6e29b6943f86ec75af12db5a1422a7e1dd.tar.bz2 volse-hubzilla-dfb3ee6e29b6943f86ec75af12db5a1422a7e1dd.zip |
fix star icon viewing profile page as unlogged user
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index ebe582f4c..7859d301c 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -450,7 +450,7 @@ function conversation(&$a, $items, $mode, $update) { ); $star = false; - $starred = "unstarred"; + $isstarred = "unstarred"; if ($profile_owner == local_user() && $toplevelpost) { $isstarred = (($item['starred']) ? "starred" : "unstarred"); |