Index: trunk/phase3/maintenance/fixSlaveDesync.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | |
4 | 4 | $wgUseRootUser = true; |
5 | 5 | require_once( 'commandLine.inc' ); |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -64,20 +64,20 @@ |
65 | 65 | <!--[if IE]><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/common/IEFixes.js"></script> |
66 | 66 | <meta http-equiv="imagetoolbar" content="no" /><![endif]--> |
67 | 67 | <?php if($this->data['jsvarurl' ]) { ?> |
68 | | - <script type="<?= $this->text('jsmimetype') ?>" src="<?= $this->text('jsvarurl' ) ?>"><!-- site js --></script> |
| 68 | + <script type="<?php echo $this->text('jsmimetype') ?>" src="<?php echo $this->text('jsvarurl' ) ?>"><!-- site js --></script> |
69 | 69 | <?php } ?> |
70 | | - <script type="<?= $this->text('jsmimetype') ?>" src="<?= $this->text('stylepath' ) ?>/common/wikibits.js"><!-- wikibits js --></script> |
| 70 | + <script type="<?php echo $this->text('jsmimetype') ?>" src="<?php echo $this->text('stylepath' ) ?>/common/wikibits.js"><!-- wikibits js --></script> |
71 | 71 | <?php if($this->data['pagecss' ]) { ?> |
72 | | - <style type="text/css"><?= $this->html('pagecss' ) ?></style> |
| 72 | + <style type="text/css"><?php echo $this->html('pagecss' ) ?></style> |
73 | 73 | <?php } |
74 | 74 | if($this->data['usercss' ]) { ?> |
75 | | - <style type="text/css"><?= $this->html('usercss' ) ?></style> |
| 75 | + <style type="text/css"><?php echo $this->html('usercss' ) ?></style> |
76 | 76 | <?php } |
77 | 77 | if($this->data['userjs' ]) { ?> |
78 | | - <script type="<?php $this->text('jsmimetype') ?>" src="<?= $this->text('userjs' ) ?>"></script> |
| 78 | + <script type="<?php $this->text('jsmimetype') ?>" src="<?php echo $this->text('userjs' ) ?>"></script> |
79 | 79 | <?php } |
80 | 80 | if($this->data['userjsprev']) { ?> |
81 | | - <script type="<?php $this->text('jsmimetype') ?>"><?= $this->html('userjsprev') ?></script> |
| 81 | + <script type="<?php $this->text('jsmimetype') ?>"><?php echo $this->html('userjsprev') ?></script> |
82 | 82 | <?php } |
83 | 83 | if($this->data['trackbackhtml']) print $this->data['trackbackhtml']; ?> |
84 | 84 | </head> |
— | — | @@ -109,8 +109,8 @@ |
110 | 110 | <h5><?php $this->msg('views') ?></h5> |
111 | 111 | <ul> |
112 | 112 | <?php foreach($this->data['content_actions'] as $key => $tab) { ?> |
113 | | - <li id="ca-<?= htmlspecialchars($key) ?>"<?php |
114 | | - if($tab['class']) { ?> class="<?= htmlspecialchars($tab['class']) ?>"<?php } |
| 113 | + <li id="ca-<?php echo htmlspecialchars($key) ?>"<?php |
| 114 | + if($tab['class']) { ?> class="<?php echo htmlspecialchars($tab['class']) ?>"<?php } |
115 | 115 | ?>><a href="<?php echo htmlspecialchars($tab['href']) ?>"><?php |
116 | 116 | echo htmlspecialchars($tab['text']) ?></a></li> |
117 | 117 | <?php } ?> |
— | — | @@ -143,9 +143,9 @@ |
144 | 144 | <div class='pBody'> |
145 | 145 | <ul> |
146 | 146 | <?php foreach($cont as $key => $val) { ?> |
147 | | - <li id="<?= htmlspecialchars($val['id']) ?>"<?php |
| 147 | + <li id="<?php echo htmlspecialchars($val['id']) ?>"<?php |
148 | 148 | if ( $val['active'] ) { ?> class="active" <?php } |
149 | | - ?>><a href="<?= htmlspecialchars($val['href']) ?>"><?= htmlspecialchars($val['text']) ?></a></li> |
| 149 | + ?>><a href="<?php echo htmlspecialchars($val['href']) ?>"><?php echo htmlspecialchars($val['text']) ?></a></li> |
150 | 150 | <?php } ?> |
151 | 151 | </ul> |
152 | 152 | </div> |
— | — | @@ -173,12 +173,12 @@ |
174 | 174 | if($this->data['notspecialpage']) { ?> |
175 | 175 | <li id="t-whatlinkshere"><a href="<?php |
176 | 176 | echo htmlspecialchars($this->data['nav_urls']['whatlinkshere']['href']) |
177 | | - ?>"><?= $this->msg('whatlinkshere') ?></a></li> |
| 177 | + ?>"><?php echo $this->msg('whatlinkshere') ?></a></li> |
178 | 178 | <?php |
179 | 179 | if( $this->data['nav_urls']['recentchangeslinked'] ) { ?> |
180 | 180 | <li id="t-recentchangeslinked"><a href="<?php |
181 | 181 | echo htmlspecialchars($this->data['nav_urls']['recentchangeslinked']['href']) |
182 | | - ?>"><?= $this->msg('recentchangeslinked') ?></a></li> |
| 182 | + ?>"><?php echo $this->msg('recentchangeslinked') ?></a></li> |
183 | 183 | <?php } |
184 | 184 | } |
185 | 185 | if(isset($this->data['nav_urls']['trackbacklink'])) { ?> |
— | — | @@ -188,29 +188,29 @@ |
189 | 189 | <?php } |
190 | 190 | if($this->data['feeds']) { ?> |
191 | 191 | <li id="feedlinks"><?php foreach($this->data['feeds'] as $key => $feed) { |
192 | | - ?><span id="feed-<?= htmlspecialchars($key) ?>"><a href="<?php |
193 | | - echo htmlspecialchars($feed['href']) ?>"><?= htmlspecialchars($feed['text'])?></a> </span> |
| 192 | + ?><span id="feed-<?php echo htmlspecialchars($key) ?>"><a href="<?php |
| 193 | + echo htmlspecialchars($feed['href']) ?>"><?php echo htmlspecialchars($feed['text'])?></a> </span> |
194 | 194 | <?php } ?></li><?php |
195 | 195 | } |
196 | 196 | |
197 | 197 | foreach( array('contributions', 'blockip', 'emailuser', 'upload', 'specialpages') as $special ) { |
198 | 198 | |
199 | 199 | if($this->data['nav_urls'][$special]) { |
200 | | - ?><li id="t-<?= $special ?>"><a href="<?= htmlspecialchars($this->data['nav_urls'][$special]['href']) |
| 200 | + ?><li id="t-<?php echo $special ?>"><a href="<?php echo htmlspecialchars($this->data['nav_urls'][$special]['href']) |
201 | 201 | ?>"><?php $this->msg($special) ?></a></li> |
202 | 202 | <?php } |
203 | 203 | } |
204 | 204 | |
205 | 205 | if(!empty($this->data['nav_urls']['print']['href'])) { ?> |
206 | | - <li id="t-print"><a href="<?= htmlspecialchars($this->data['nav_urls']['print']['href']) |
207 | | - ?>"><?= $this->msg('printableversion') ?></a></li><?php |
| 206 | + <li id="t-print"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['print']['href']) |
| 207 | + ?>"><?php echo $this->msg('printableversion') ?></a></li><?php |
208 | 208 | } |
209 | 209 | |
210 | 210 | if(!empty($this->data['nav_urls']['permalink']['href'])) { ?> |
211 | | - <li id="t-permalink"><a href="<?= htmlspecialchars($this->data['nav_urls']['permalink']['href']) |
212 | | - ?>"><?= $this->msg('permalink') ?></a></li><?php |
| 211 | + <li id="t-permalink"><a href="<?php echo htmlspecialchars($this->data['nav_urls']['permalink']['href']) |
| 212 | + ?>"><?php echo $this->msg('permalink') ?></a></li><?php |
213 | 213 | } elseif ($this->data['nav_urls']['permalink']['href'] === '') { ?> |
214 | | - <li id="t-ispermalink"><?= $this->msg('permalink') ?></li><?php |
| 214 | + <li id="t-ispermalink"><?php echo $this->msg('permalink') ?></li><?php |
215 | 215 | } |
216 | 216 | |
217 | 217 | wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) ); |
— | — | @@ -221,12 +221,12 @@ |
222 | 222 | <?php |
223 | 223 | if( $this->data['language_urls'] ) { ?> |
224 | 224 | <div id="p-lang" class="portlet"> |
225 | | - <h5><?= $this->msg('otherlanguages') ?></h5> |
| 225 | + <h5><?php echo $this->msg('otherlanguages') ?></h5> |
226 | 226 | <div class="pBody"> |
227 | 227 | <ul> |
228 | 228 | <?php foreach($this->data['language_urls'] as $langlink) { ?> |
229 | | - <li class="<?= htmlspecialchars($langlink['class'])?>"><?php |
230 | | - ?><a href="<?= htmlspecialchars($langlink['href']) ?>"><?= $langlink['text'] ?></a></li> |
| 229 | + <li class="<?php echo htmlspecialchars($langlink['class'])?>"><?php |
| 230 | + ?><a href="<?php echo htmlspecialchars($langlink['href']) ?>"><?php echo $langlink['text'] ?></a></li> |
231 | 231 | <?php } ?> |
232 | 232 | </ul> |
233 | 233 | </div> |
— | — | @@ -253,7 +253,7 @@ |
254 | 254 | ); |
255 | 255 | foreach( $footerlinks as $aLink ) { |
256 | 256 | if( $this->data[$aLink] ) { |
257 | | -?> <li id="<?=$aLink?>"><?= $this->html($aLink) ?></li> |
| 257 | +?> <li id="<?php echo$aLink?>"><?php echo $this->html($aLink) ?></li> |
258 | 258 | <?php } |
259 | 259 | } |
260 | 260 | ?> |
— | — | @@ -261,7 +261,7 @@ |
262 | 262 | </div> |
263 | 263 | <script type="text/javascript"> if (window.runOnloadHook) runOnloadHook();</script> |
264 | 264 | </div> |
265 | | -<?= $this->html('reporttime') ?> |
| 265 | +<?php echo $this->html('reporttime') ?> |
266 | 266 | |
267 | 267 | </body></html> |
268 | 268 | <?php |
Index: trunk/phase3/includes/Wiki.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | |
4 | 4 | #__________________________ |
5 | 5 | #wiki class |
Index: trunk/phase3/includes/ProfilerSimpleUDP.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /* ProfilerSimpleUDP class, that sends out messages for 'udpprofile' daemon |
4 | 4 | (the one from wikipedia/udpprofile CVS ) |
5 | 5 | */ |
Index: trunk/phase3/includes/DatabaseMysql.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /* |
4 | 4 | * Stub database class for MySQL. |
5 | 5 | */ |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -370,6 +370,7 @@ |
371 | 371 | * (bug 2726, 3397) Fix [[Special:]] and [[:Image]] links in action=render |
372 | 372 | * (bug 3794) Include OS / platform info in Special:Version |
373 | 373 | * (bug 4419) Remove obsolete magnify.png.old |
| 374 | +* Fix for short_open_tag off again; please don't break this, guys |
374 | 375 | |
375 | 376 | |
376 | 377 | === Caveats === |
Index: trunk/phase3/languages/LanguagePt.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /** Portuguese (Português) |
4 | 4 | * This translation was made by: |
5 | 5 | * - Yves Marques Junqueira |
Index: trunk/phase3/languages/LanguagePt_br.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<?PHP |
| 2 | +<?php |
3 | 3 | /** Brazilian Portugese (Portuguêsi do Brasil) |
4 | 4 | * @package MediaWiki |
5 | 5 | * @subpackage Language |
Index: trunk/extensions/Review/Review.php |
— | — | @@ -1,4 +1,4 @@ |
2 | | -<? |
| 2 | +<?php |
3 | 3 | /** |
4 | 4 | * An extension that let your users review article quality. |
5 | 5 | * |