Completed
Pull Request — master (#1322)
by Nick
07:54 queued 02:46
created
www/includes/easyparliament/templates/html/section/pbc_bill.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -24,29 +24,29 @@  discard block
 block discarded – undo
24 24
             <ul class="business-list">
25 25
             <?php
26 26
                 $first = 0;
27
-                foreach ( $content['rows'] as $row ) {
28
-                    if ( $row['htype'] == 10 ) {
29
-                        if ( !$first ) {
27
+                foreach ($content['rows'] as $row) {
28
+                    if ($row['htype'] == 10) {
29
+                        if (!$first) {
30 30
                             print '</li>';
31 31
                             $first = 1;
32 32
                         } ?>
33 33
                         <li>
34
-                            <a <?= isset($row['sitting']) ? 'id="sitting' . $row['sitting'] . '" ' : '' ?>href="<?= $row['listurl'] ?>" class="business-list__title">
34
+                            <a <?= isset($row['sitting']) ? 'id="sitting'.$row['sitting'].'" ' : '' ?>href="<?= $row['listurl'] ?>" class="business-list__title">
35 35
                                 <h3>
36 36
                                     <?= $row['body'] ?>
37 37
                                 </h3>
38 38
                             </a>
39 39
                             <p class="business-list__meta">
40
-                                <?php if ( isset($row['sitting']) ) { ?>
40
+                                <?php if (isset($row['sitting'])) { ?>
41 41
                                     <?= make_ranking($row['sitting']) ?> sitting &middot;
42 42
                                 <?php } ?>
43
-                                <?= format_date($row['hdate'], LONGERDATEFORMAT ) ?>
44
-                                <?php if ( $row['contentcount'] > 0 ) { ?>
45
-                                &middot; <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'] . ' speeches' ?>
43
+                                <?= format_date($row['hdate'], LONGERDATEFORMAT) ?>
44
+                                <?php if ($row['contentcount'] > 0) { ?>
45
+                                &middot; <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'].' speeches' ?>
46 46
                                 <?php } ?>
47 47
                             </p>
48 48
                             <p class="business-list__excerpt">
49
-                                <?= trim_characters($row['excerpt'], 0, 200 ) ?>
49
+                                <?= trim_characters($row['excerpt'], 0, 200) ?>
50 50
                             </p>
51 51
                     <?php } else { ?>
52 52
                     <ul>
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
                             </a>
59 59
                             <?php if (isset($row['contentcount'])) { ?>
60 60
                                 <p class="business-list__meta">
61
-                                    <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'] . ' speeches' ?>
61
+                                    <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'].' speeches' ?>
62 62
                                 </p>
63 63
                             <?php } ?>
64
-                            <?php if ( isset($row['excerpt']) ) { ?>
64
+                            <?php if (isset($row['excerpt'])) { ?>
65 65
                                 <p class="business-list__excerpt">
66 66
                                     <?= trim_characters($row['excerpt'], 0, 200) ?>
67 67
                                 </p>
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             </ul>
74 74
         </div>
75 75
 
76
-        <?php if ( isset($content['info']['committee']) ) {
76
+        <?php if (isset($content['info']['committee'])) {
77 77
             $committee = $content['info']['committee'];
78 78
         ?>
79 79
         <div class="business-section__secondary">
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
 
86 86
             <p><strong>Chairpersons</strong></p>
87 87
             <ul>
88
-            <?php foreach( $committee['chairmen'] as $chair ) { ?>
88
+            <?php foreach ($committee['chairmen'] as $chair) { ?>
89 89
                 <li><?= $chair['name'] ?> (<?= $chair['attending'] ?>)</li>
90 90
             <?php } ?>
91 91
             </ul>
92 92
             <p><strong>Members</strong></p>
93 93
             <ul>
94
-            <?php foreach( $committee['members'] as $chair ) { ?>
94
+            <?php foreach ($committee['members'] as $chair) { ?>
95 95
                 <li><?= $chair['name'] ?> (<?= $chair['attending'] ?>)</li>
96 96
             <?php } ?>
97 97
             </ul>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/section/day.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
                       <?php } ?>
50 50
                     </a>
51 51
                   <?php }
52
-                  if ( isset($row['excerpt']) ) { ?>
52
+                    if ( isset($row['excerpt']) ) { ?>
53 53
                     <p class="business-list__excerpt">
54 54
                         <?= trim_characters($row['excerpt'], 0, 200 ) ?>
55 55
                     </p>
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -6,32 +6,32 @@  discard block
 block discarded – undo
6 6
                 <?= $parent_title ?>
7 7
             </h1>
8 8
             <p class="business-section__header__date">
9
-                <?= format_date( $info['date'], LONGERDATEFORMAT ) ?>
9
+                <?= format_date($info['date'], LONGERDATEFORMAT) ?>
10 10
             </p>
11 11
         </div>
12
-      <?php if ( isset($rows) ) { ?>
12
+      <?php if (isset($rows)) { ?>
13 13
         <div class="business-section__primary">
14 14
             <ul class="business-list">
15 15
               <?php
16 16
                 $prevlevel = '';
17
-                foreach ( $rows as $row ) { ?>
18
-                <?php if ( $row['htype'] == 10 ) {
19
-                    if ( $prevlevel == 'sub' ) { ?>
17
+                foreach ($rows as $row) { ?>
18
+                <?php if ($row['htype'] == 10) {
19
+                    if ($prevlevel == 'sub') { ?>
20 20
                     </ul>
21 21
                     </li>
22
-                    <?php } elseif ( $prevlevel == 'top' ) { ?>
22
+                    <?php } elseif ($prevlevel == 'top') { ?>
23 23
                     </li>
24 24
                     <?php } ?>
25 25
                     <li>
26 26
                 <?php } else {
27
-                    if ( $prevlevel == '' ) { ?>
27
+                    if ($prevlevel == '') { ?>
28 28
                     <li>
29
-                    <?php } elseif ( $prevlevel == 'top' ) { ?>
29
+                    <?php } elseif ($prevlevel == 'top') { ?>
30 30
                     <ul>
31 31
                     <li>
32 32
                     <?php } ?>
33 33
                 <?php } ?>
34
-                  <?php if ( isset($row['excerpt']) && strstr($row['excerpt'], "was asked&#8212;") ) { ?>
34
+                  <?php if (isset($row['excerpt']) && strstr($row['excerpt'], "was asked&#8212;")) { ?>
35 35
                     <div class="business-list__title">
36 36
                         <h3>
37 37
                             <?= $row['body'] ?>
@@ -42,26 +42,26 @@  discard block
 block discarded – undo
42 42
                         <h3>
43 43
                             <?= $row['body'] ?>
44 44
                         </h3>
45
-                      <?php if ( isset($row['contentcount']) && $row['contentcount'] > 0 ) { ?>
45
+                      <?php if (isset($row['contentcount']) && $row['contentcount'] > 0) { ?>
46 46
                         <span class="business-list__meta">
47
-                            <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'] . ' speeches' ?>
47
+                            <?= $row['contentcount'] == 1 ? '1 speech' : $row['contentcount'].' speeches' ?>
48 48
                         </span>
49 49
                       <?php } ?>
50 50
                     </a>
51 51
                   <?php }
52
-                  if ( isset($row['excerpt']) ) { ?>
52
+                  if (isset($row['excerpt'])) { ?>
53 53
                     <p class="business-list__excerpt">
54
-                        <?= trim_characters($row['excerpt'], 0, 200 ) ?>
54
+                        <?= trim_characters($row['excerpt'], 0, 200) ?>
55 55
                     </p>
56 56
                   <?php } ?>
57
-                <?php if ( $row['htype'] == 10 ) {
57
+                <?php if ($row['htype'] == 10) {
58 58
                     $prevlevel = 'top';
59 59
                 } else {
60 60
                     $prevlevel = 'sub'; ?>
61 61
                 </li>
62 62
                 <?php } ?>
63 63
               <?php } ?>
64
-                <?php if ( $prevlevel == 'sub' ) { ?>
64
+                <?php if ($prevlevel == 'sub') { ?>
65 65
                 </ul>
66 66
                 </li>
67 67
                 <?php } ?>
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
         <div class="business-section__secondary">
71 71
             <div class="business-section__what-is-this">
72 72
                 <h3>What is this?</h3>
73
-                <?php include '_' . $section . '_desc.php'; ?>
73
+                <?php include '_'.$section.'_desc.php'; ?>
74 74
             </div>
75 75
             <?php
76 76
                 include '_calendar_section.php';
77
-                include( dirname(__FILE__) . '/../sidebar/looking_for.php' );
77
+                include(dirname(__FILE__).'/../sidebar/looking_for.php');
78 78
             ?>
79 79
         </div>
80 80
       <?php } else { ?>
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,6 +84,6 @@
 block discarded – undo
84 84
       <?php } ?>
85 85
     </div>
86 86
 
87
-    <?php $search_title = "Search $title"; include '_search.php'; ?>
87
+    <?php $search_title = "search $title"; include '_search.php'; ?>
88 88
 
89 89
 </div>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/section/_section_content.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
         if ($hansardmajors[$data['info']['major']]['location'] == 'Scotland') {
13 13
             $body = preg_replace('# (S\d[O0WF]-\d+)[, ]#', ' <a href="/spwrans/?spid=$1">$1</a> ', $body);
14 14
             $body = preg_replace_callback('#<citation id="uk\.org\.publicwhip/(.*?)/(.*?)">\[(.*?)\]</citation>#', function($matches) {
15
-                   if ($matches[1] == 'spor') {
16
-                       $href_segment = 'sp/?g';
17
-                   } elseif ($matches[1] == 'spwa') {
15
+                    if ($matches[1] == 'spor') {
16
+                        $href_segment = 'sp/?g';
17
+                    } elseif ($matches[1] == 'spwa') {
18 18
                         $href_segment = 'spwrans/?';
19 19
                     } else {
20 20
                         $href_segment = 'debates/?';
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-  <?php foreach($data['rows'] as $speech) { ?>
1
+  <?php foreach ($data['rows'] as $speech) { ?>
2 2
 
3 3
     <?php
4 4
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
                     } else {
20 20
                         $href_segment = 'debates/?';
21 21
                     }
22
-                    return '[<a href="' . $href_segment . 'id=' . $matches[2] . '\">' . $matches[3] . '</a>]';
22
+                    return '[<a href="'.$href_segment.'id='.$matches[2].'\">'.$matches[3].'</a>]';
23 23
                 },
24 24
                 $body);
25 25
             $body = str_replace('href="../../../', 'href="http://www.scottish.parliament.uk/', $body);
@@ -65,34 +65,34 @@  discard block
 block discarded – undo
65 65
             'url' => $speech['source_url']
66 66
         );
67 67
         $major = $data['info']['major'];
68
-        if ($major==1 || $major==2 || (($major==3 || $major==4) && isset($speech['speaker']['house'])) || $major==101 || $major==6) {
68
+        if ($major == 1 || $major == 2 || (($major == 3 || $major == 4) && isset($speech['speaker']['house'])) || $major == 101 || $major == 6) {
69 69
             $source['title'] = 'Citation: ';
70
-            if ($major==1 || $major==2) {
70
+            if ($major == 1 || $major == 2) {
71 71
                 $source['title'] .= 'HC';
72
-            } elseif ($major==3 || $major==4) {
73
-                if ($speech['speaker']['house']==1) {
72
+            } elseif ($major == 3 || $major == 4) {
73
+                if ($speech['speaker']['house'] == 1) {
74 74
                     $source['title'] .= 'HC';
75 75
                 } else {
76 76
                     $source['title'] .= 'HL';
77 77
                 }
78
-            } elseif ($major==6) {
78
+            } elseif ($major == 6) {
79 79
                 $source['title'] .= $data['section_title'];
80 80
             } else {
81 81
                 $source['title'] .= 'HL';
82 82
             }
83
-            $source['title'] .= ' Deb, ' . format_date($data['info']['date'], LONGDATEFORMAT) . ', c' . $speech['colnum'];
84
-            if ($major==2) {
83
+            $source['title'] .= ' Deb, '.format_date($data['info']['date'], LONGDATEFORMAT).', c'.$speech['colnum'];
84
+            if ($major == 2) {
85 85
                 $source['title'] .= 'WH';
86
-            } elseif ($major==3) {
86
+            } elseif ($major == 3) {
87 87
                 $source['title'] .= 'W';
88
-            } elseif ($major==4) {
88
+            } elseif ($major == 4) {
89 89
                 $source['title'] .= 'WS';
90 90
             }
91 91
         } else {
92 92
             $source['title'] = null;
93 93
         }
94 94
 
95
-        if ($hansardmajors[$data['info']['major']]['location']=='Scotland'){
95
+        if ($hansardmajors[$data['info']['major']]['location'] == 'Scotland') {
96 96
             $source['text'] = 'Official Report source';
97 97
         } else {
98 98
             $source['text'] = 'Hansard source';
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
             <div class="debate-speech__speaker-and-content">
111 111
 
112
-          <?php if(isset($speech['speaker']) && count($speech['speaker']) > 0) { ?>
112
+          <?php if (isset($speech['speaker']) && count($speech['speaker']) > 0) { ?>
113 113
             <h2 class="debate-speech__speaker">
114 114
                 <?php
115 115
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                         $speaker['party'] != 'Deputy Speaker' &&
136 136
                         $speaker['constituency']
137 137
                     ) {
138
-                        $speaker_position .= ', ' . $speaker['constituency'];
138
+                        $speaker_position .= ', '.$speaker['constituency'];
139 139
                     }
140 140
                 }
141 141
 
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
           <?php } ?>
167 167
             <div class="debate-speech__content"><?=$body ?></div>
168 168
 
169
-            <?php if ( $section ) {
169
+            <?php if ($section) {
170 170
                 if ($speech['voting_data']) { ?>
171 171
 
172 172
                 <div class="debate-speech__question-answered">
@@ -191,10 +191,10 @@  discard block
 block discarded – undo
191 191
 
192 192
                 // Video
193 193
                 if ($data['info']['major'] == 1 && !$individual_item) { # Commons debates only
194
-                    if ($speech['video_status']&4) { ?>
194
+                    if ($speech['video_status'] & 4) { ?>
195 195
                         <a href="<?= $speech['commentsurl'] ?>" class="watch debate-speech__meta__link" onclick="return moveVideo(\'debate/'<?= $speech['gid'] ?>\');">Watch this</a>
196 196
                     <?php
197
-                    } elseif (!$speech['video'] && $speech['video_status']&1 && !($speech['video_status']&8)) {
197
+                    } elseif (!$speech['video'] && $speech['video_status'] & 1 && !($speech['video_status'] & 8)) {
198 198
                         $gid_type = $data['info']['major'] == 1 ? 'debate' : 'lords'; ?>
199 199
                         <a href="/video/?from=debate&amp;gid=<?= $gid_type ?>/<?= $speech['gid'] ?>" class="timestamp debate-speech__meta__link">Video match this</a>
200 200
                     <?php
@@ -284,28 +284,28 @@  discard block
 block discarded – undo
284 284
                 $has_content = false;
285 285
             }
286 286
             if ($has_content) {
287
-                print '<a href="' . $row['listurl'] . '">' . $row['body'] . '</a> ';
287
+                print '<a href="'.$row['listurl'].'">'.$row['body'].'</a> ';
288 288
                 // For the "x speeches, x comments" text.
289 289
                 $moreinfo = array();
290 290
                 if ($hansardmajors[$row['major']]['type'] != 'other') {
291 291
                     // All wrans have 2 speeches, so no need for this.
292 292
                     // All WMS have 1 speech
293 293
                     $plural = $row['contentcount'] == 1 ? 'speech' : 'speeches';
294
-                    $moreinfo[] = $row['contentcount'] . " $plural";
294
+                    $moreinfo[] = $row['contentcount']." $plural";
295 295
                 }
296 296
                 if ($row['totalcomments'] > 0) {
297 297
                     $plural = $row['totalcomments'] == 1 ? 'annotation' : 'annotations';
298
-                    $moreinfo[] = $row['totalcomments'] . " $plural";
298
+                    $moreinfo[] = $row['totalcomments']." $plural";
299 299
                 }
300 300
                 if (count($moreinfo) > 0) {
301
-                    print "<small>(" . implode (', ', $moreinfo) . ") </small>";
301
+                    print "<small>(".implode(', ', $moreinfo).") </small>";
302 302
                 }
303 303
             } else {
304 304
                 // Nothing in this item, so no link.
305 305
                 print $row['body'];
306 306
             }
307 307
             if (isset($row['excerpt'])) {
308
-                print "<p class=\"subrows__excerpt\">" . trim_characters($row['excerpt'], 0, 200) . "</p>";
308
+                print "<p class=\"subrows__excerpt\">".trim_characters($row['excerpt'], 0, 200)."</p>";
309 309
             }
310 310
         }
311 311
         print '</ul></div></div></div>';
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
               <?php # XXX
158 158
                 if ($data['info']['major'] == 8 && preg_match('#\d{4}-\d\d-\d\d\.(.*?)\.q#', $speech['gid'], $m)) {
159 159
                     ?><p class="debate-speech__question_id"><small>
160
-                    <?= "Question $m[1]" ?>
160
+                    <?= "question $m[1]" ?>
161 161
                     </small></p>
162 162
               <?php } ?>
163 163
             </h2>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/section/_search.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@
 block discarded – undo
10 10
                         <input type="submit" value="Search" class="button search-section__submit">
11 11
                     </div>
12 12
                 </div>
13
-                <?php if ( isset($search_sections) ) { ?>
14
-                    <?php if ( count($search_sections) == 1 ) { ?>
13
+                <?php if (isset($search_sections)) { ?>
14
+                    <?php if (count($search_sections) == 1) { ?>
15 15
                     <input name="section" value="<?= $search_sections[0]['section'] ?>" type="hidden">
16
-                    <?php } else if ( count($search_sections) > 1 ) { ?>
16
+                    <?php } else if (count($search_sections) > 1) { ?>
17 17
                     <div class="search-section__filters">
18
-                        <?php foreach ( $search_sections as $section ) { ?>
18
+                        <?php foreach ($search_sections as $section) { ?>
19 19
                             <label><input name="section[]" value="<?= $section['section'] ?>" type="checkbox" checked="checked"><?= $section['title'] ?></label>
20 20
                     <?php } ?>
21 21
                     </div>
22 22
                     <?php }
23
-                } else if ( isset($section) ) { ?>
23
+                } else if (isset($section)) { ?>
24 24
                 <input name="section" value="<?= $section ?>" type="hidden">
25 25
                 <?php } ?>
26 26
             </form>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/comments.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         }
70 70
 
71 71
         if (isset($comment['comment_id'])) {
72
-            $id = 'c' . $comment['comment_id'];
72
+            $id = 'c'.$comment['comment_id'];
73 73
         } else {
74 74
             $id = '';
75 75
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         if (!$comment['visible']) {
85 85
             $reporthtml = '';
86 86
         } elseif (($this_page != 'commentreport' &&
87
-            $this_page != 'addcomment'  &&
87
+            $this_page != 'addcomment' &&
88 88
             $this_page != 'admin_commentreport')
89 89
             && $THEUSER->is_able_to('reportcomment')
90 90
             && $THEUSER->user_id() != $comment['user_id']
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                 'ret' 	=> $comment['url']
101 101
             ));
102 102
 
103
-            $reporthtml = '(<a href="' . $URL->generate() . '" title="Notify moderators that this annotation should be deleted">Report this annotation</a>)';
103
+            $reporthtml = '(<a href="'.$URL->generate().'" title="Notify moderators that this annotation should be deleted">Report this annotation</a>)';
104 104
 
105 105
         } elseif ($comment['modflagged']) {
106 106
             $reporthtml = '(This annotation has been reported to moderators)';
@@ -119,11 +119,11 @@  discard block
 block discarded – undo
119 119
         $date = format_date($date, SHORTDATEFORMAT);
120 120
         $time = format_time($time, TIMEFORMAT);
121 121
         ?>
122
-                    <p class="credit"><a href="<?php echo $USERURL->generate(); ?>" title="See information about this user"><strong><?php echo _htmlentities($comment['firstname']) .' '. _htmlentities($comment['lastname']); ?></strong></a><br>
122
+                    <p class="credit"><a href="<?php echo $USERURL->generate(); ?>" title="See information about this user"><strong><?php echo _htmlentities($comment['firstname']).' '._htmlentities($comment['lastname']); ?></strong></a><br>
123 123
                     <small>Posted on <?php echo $date;
124 124
 
125 125
         if (isset($comment['url'])) {
126
-            print ' <a href="' . $comment['url'] . '" title="Link to this annotation">' . $time . '</a>';
126
+            print ' <a href="'.$comment['url'].'" title="Link to this annotation">'.$time.'</a>';
127 127
 
128 128
         } else {
129 129
             // There won't be a URL when we're just previewing a comment.
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/sidebar/looking_for.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-    <?php if ( isset($mini_survey) ) {
2
-        if ( $mini_survey['show'] ) { ?>
1
+    <?php if (isset($mini_survey)) {
2
+        if ($mini_survey['show']) { ?>
3 3
                 <form class="minisurvey" method="post" action="<?=OPTION_SURVEY_URL?>">
4 4
                     <p>Did you find what you were looking for?</p>
5 5
                     <input type="hidden" name="sourceidentifier" value="twfy-mini-2">
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
                     <input type="submit" value="Submit answer">
19 19
                 </form>
20
-        <?php } else if ( $mini_survey['answered'] ) { ?>
20
+        <?php } else if ($mini_survey['answered']) { ?>
21 21
             <p>Thanks for answering</p>
22 22
         <?php } ?>
23 23
     <?php } ?>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/glossary.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $USERURL->insert(array('u'=>$comment['user_id']));
78 78
         ?>
79 79
         <div class="comment">
80
-            <p><a href="<?php echo $USERURL->generate(); ?>" title="See information about this user"><strong><?php echo _htmlentities($comment['firstname']) .' '. _htmlentities($comment['lastname']); ?></strong></a><br>
80
+            <p><a href="<?php echo $USERURL->generate(); ?>" title="See information about this user"><strong><?php echo _htmlentities($comment['firstname']).' '._htmlentities($comment['lastname']); ?></strong></a><br>
81 81
 <?php
82 82
         // Make URLs into links and do <br>s.
83 83
         $body = prepare_comment_for_display($comment['body']); // In utility.php
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         }
106 106
 
107 107
         if (($this_page != 'commentreport' &&
108
-            $this_page != 'addcomment'  &&
108
+            $this_page != 'addcomment' &&
109 109
             $this_page != 'admin_commentreport')
110 110
             && $THEUSER->is_able_to('reportcomment')
111 111
             && !$comment['modflagged']
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/header.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     <meta name="keywords" content="<?= _htmlentities($meta_keywords); ?>">
12 12
     <?php
13 13
         if (!empty($robots)) {
14
-            echo '<meta name="robots" content="' . $robots . '">';
14
+            echo '<meta name="robots" content="'.$robots.'">';
15 15
         }
16 16
     ?>
17 17
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         }(document, 'script', 'facebook-jssdk'));
159 159
     </script>
160 160
 
161
-  <?php if ( $banner_text ) { ?>
161
+  <?php if ($banner_text) { ?>
162 162
     <div class="banner">
163 163
         <div class="full-page__row">
164 164
             <div class="banner__content">
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                             <img src="/style/img/[email protected]" width="24" height="24" alt=""><span>Your Profile</span>
235 235
                         </a>
236 236
                         <ul id="nav-user">
237
-                          <?php foreach ($user_nav_links as $nav_link){ ?>
237
+                          <?php foreach ($user_nav_links as $nav_link) { ?>
238 238
                             <li><a href="<?= $nav_link['href']; ?>" title="<?= $nav_link['title']; ?>" class="<?= $nav_link['classes']; ?>"><?= $nav_link['text'] ?></a></li>
239 239
                             <?php } ?>
240 240
                         </ul>
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
     <div class="full-page legacy-page static-page">
256 256
         <div class="full-page__row">
257 257
             <div class="panel">
258
-            <?php foreach ( $page_errors as $error ) { ?>
258
+            <?php foreach ($page_errors as $error) { ?>
259 259
                 <p><?= $error['text'] ?></p>
260 260
             <?php } ?>
261 261
             </div>
Please login to merge, or discard this patch.
www/includes/easyparliament/templates/html/ni/index.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
                 <div class="row nested-row">
42 42
                     <div class="homepage-in-the-news homepage-content-section">
43 43
                         <?php if ( $featured ) {
44
-                             include dirname(__FILE__) . "/../homepage/featured.php";
44
+                                include dirname(__FILE__) . "/../homepage/featured.php";
45 45
                         } ?>
46 46
                     </div>
47 47
                     <div class="homepage-create-alert homepage-content-section">
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@  discard block
 block discarded – undo
4 4
             <div class="hero__mp-search__wrap">
5 5
                 <h1>Do your MLAs represent you?</h1>
6 6
                 <div class="row collapse">
7
-                    <?php if ( count($data['regional']) > 0 ) { ?>
7
+                    <?php if (count($data['regional']) > 0) { ?>
8 8
                         <ul class="homepage-rep-list">
9 9
                             <li>Your MLAs: </li>
10
-                        <?php foreach ( $data['regional'] as $mla ) { ?>
10
+                        <?php foreach ($data['regional'] as $mla) { ?>
11 11
                             <li class="homepage-rep-list__rep"><a href="/mla/?p=<?= $mla['person_id'] ?>"><?= $mla['name'] ?></a></li>
12 12
                         <?php } ?>
13 13
                         </ul>
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
             <div class="panel panel--flushtop clearfix">
41 41
                 <div class="row nested-row">
42 42
                     <div class="homepage-in-the-news homepage-content-section">
43
-                        <?php if ( $featured ) {
44
-                             include dirname(__FILE__) . "/../homepage/featured.php";
43
+                        <?php if ($featured) {
44
+                             include dirname(__FILE__)."/../homepage/featured.php";
45 45
                         } ?>
46 46
                     </div>
47 47
                     <div class="homepage-create-alert homepage-content-section">
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
                     <div class="homepage-recently homepage-content-section">
86 86
                         <h2>Recently in the Northern Ireland Assembly</h2>
87 87
                         <ul class="recently__list"><?php
88
-                            foreach ( $debates['recent'] as $recent ) {
89
-                                include dirname(__FILE__) . '/../homepage/recent-debates.php';
88
+                            foreach ($debates['recent'] as $recent) {
89
+                                include dirname(__FILE__).'/../homepage/recent-debates.php';
90 90
                             }
91 91
                         ?></ul>
92 92
                     </div>
Please login to merge, or discard this patch.