@@ -109,8 +109,8 @@ function handlePost()
109
109
$ osp ->created = common_sql_now ();
110
110
}
111
111
112
- $ osp ->stream_mode_only = $ this ->boolean ('stream_mode_only ' );
113
- $ osp ->conversation_tree = $ this ->boolean ('conversation_tree ' );
112
+ $ osp ->stream_mode_only = ! $ this ->boolean ('stream_mode_only ' );
113
+ $ osp ->conversation_tree = ! $ this ->boolean ('conversation_tree ' );
114
114
$ osp ->stream_nicknames = $ this ->boolean ('stream_nicknames ' );
115
115
$ osp ->modified = common_sql_now ();
116
116
@@ -158,12 +158,12 @@ function formData()
158
158
$ this ->elementStart ('fieldset ' );
159
159
$ this ->elementStart ('ul ' , 'form_data ' );
160
160
$ this ->elementStart ('li ' );
161
- $ this ->checkbox ('stream_mode_only ' , _ ('Only stream mode (no conversations) in timelines ' ),
162
- $ this ->user ->streamModeOnly ());
161
+ $ this ->checkbox ('stream_mode_only ' , _ ('Show conversations in timelines ' ),
162
+ ! $ this ->user ->streamModeOnly ());
163
163
$ this ->elementEnd ('li ' );
164
164
$ this ->elementStart ('li ' );
165
- $ this ->checkbox ('conversation_tree ' , _ ('Show conversation page as hierarchical trees ' ),
166
- $ this ->user ->conversationTree ());
165
+ $ this ->checkbox ('conversation_tree ' , _ ('Show conversation page as flat listing ' ),
166
+ ! $ this ->user ->conversationTree ());
167
167
$ this ->elementEnd ('li ' );
168
168
$ this ->elementStart ('li ' );
169
169
$ this ->checkbox ('stream_nicknames ' , _ ('Show nicknames (not full names) in timelines ' ),
0 commit comments