@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | function search_thread_titles( |
34 | 34 | $keyword_list, $forum="", $user="", $time="", $limit=200, |
35 | 35 | $sort_style=CREATE_TIME_NEW, $show_hidden = false |
36 | -){ |
|
36 | +) { |
|
37 | 37 | $search_string="%"; |
38 | 38 | foreach ($keyword_list as $key => $word) { |
39 | 39 | $search_string .= BoincDb::escape_string($word)."%"; |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | // |
85 | 85 | function search_post_content( |
86 | 86 | $keyword_list, $forum, $user, $time, $limit, $sort_style, $show_hidden |
87 | -){ |
|
87 | +) { |
|
88 | 88 | $db = BoincDb::get(); |
89 | 89 | |
90 | 90 | $search_string="%"; |
91 | - foreach ($keyword_list as $key => $word){ |
|
91 | + foreach ($keyword_list as $key => $word) { |
|
92 | 92 | $search_string .= BoincDb::escape_string($word)."%"; |
93 | 93 | } |
94 | 94 | $optional_join = ""; |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | |
135 | 135 | $logged_in_user = get_logged_in_user(false); |
136 | 136 | BoincForumPrefs::lookup($logged_in_user); |
137 | -if ($logged_in_user && $logged_in_user->prefs->privilege(S_MODERATOR)){ |
|
137 | +if ($logged_in_user && $logged_in_user->prefs->privilege(S_MODERATOR)) { |
|
138 | 138 | $show_hidden_posts = true; |
139 | 139 | } else { |
140 | 140 | $show_hidden_posts = false; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | $limit = 100; |
158 | 158 | |
159 | -if ($search_forum==-1){ |
|
159 | +if ($search_forum==-1) { |
|
160 | 160 | $forum = null; |
161 | 161 | } else if ($search_forum) { |
162 | 162 | $forum = BoincForum::lookup_id($search_forum); |
@@ -173,11 +173,11 @@ discard block |
||
173 | 173 | |
174 | 174 | // Display the threads while we search for posts |
175 | 175 | // |
176 | -if (count($threads)){ |
|
176 | +if (count($threads)) { |
|
177 | 177 | echo "<h3>" . tra("Thread titles matching your query:") . "</h3>"; |
178 | 178 | start_table('table-striped'); |
179 | 179 | thread_list_header(); |
180 | - foreach ($threads as $thread){ |
|
180 | + foreach ($threads as $thread) { |
|
181 | 181 | if ($thread->hidden) continue; |
182 | 182 | thread_list_item($thread, $logged_in_user); |
183 | 183 | } |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | $show_hidden_posts |
194 | 194 | ); |
195 | 195 | |
196 | -if (count($posts)){ |
|
196 | +if (count($posts)) { |
|
197 | 197 | echo "<h3>" . tra("Messages matching your query:") . "</h3>"; |
198 | 198 | start_table('table-striped'); |
199 | 199 | row_heading_array(['Info', 'Post'], ['', 'width=70%']); |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | end_table(); |
218 | 218 | } |
219 | 219 | |
220 | -if (!count($threads) && !count($posts)){ |
|
220 | +if (!count($threads) && !count($posts)) { |
|
221 | 221 | echo "<p>".tra("Sorry, couldn't find anything matching your search query. You can try to broaden your search by using less words (or less specific words).")."</p> |
222 | 222 | <p>" |
223 | 223 | .tra("You can also %1 try the same search on Google. %2", |
@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | $preview = post_str("preview", true); |
57 | 57 | $warning = null; |
58 | 58 | |
59 | -if ($content && $title && (!$preview)){ |
|
59 | +if ($content && $title && (!$preview)) { |
|
60 | 60 | if (post_str('add_signature', true)) { |
61 | 61 | $add_signature = true; // set a flag and concatenate later |
62 | - } else { |
|
62 | + } else { |
|
63 | 63 | $add_signature = false; |
64 | 64 | } |
65 | 65 | check_tokens($logged_in_user->authenticator); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $submit_help = "<br /><font color=\"red\">".tra("Remember to add a title")."</font>"; |
123 | 123 | } |
124 | 124 | |
125 | -if ($force_title && $title){ |
|
125 | +if ($force_title && $title) { |
|
126 | 126 | row2( |
127 | 127 | tra("Title"), |
128 | 128 | sprintf( |
@@ -69,7 +69,7 @@ |
||
69 | 69 | project_forum_index_intro(); |
70 | 70 | } |
71 | 71 | |
72 | - if (defined('FORUM_QA_MERGED_MODE') && FORUM_QA_MERGED_MODE){ |
|
72 | + if (defined('FORUM_QA_MERGED_MODE') && FORUM_QA_MERGED_MODE) { |
|
73 | 73 | $categories = BoincCategory::enum("true order by orderID"); |
74 | 74 | } else { |
75 | 75 | echo "<p>" |