Index: trunk/phase3/index.php |
— | — | @@ -32,6 +32,8 @@ |
33 | 33 | * with this program; if not, write to the Free Software Foundation, Inc., |
34 | 34 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
35 | 35 | * http://www.gnu.org/copyleft/gpl.html |
| 36 | + * |
| 37 | + * @file |
36 | 38 | */ |
37 | 39 | |
38 | 40 | |
— | — | @@ -47,7 +49,7 @@ |
48 | 50 | OutputPage::setEncodings(); # Not really used yet |
49 | 51 | |
50 | 52 | $maxLag = $wgRequest->getVal( 'maxlag' ); |
51 | | -if( !is_null($maxLag) && !$mediaWiki->checkMaxLag( $maxLag ) ) { |
| 53 | +if( !is_null( $maxLag ) && !$mediaWiki->checkMaxLag( $maxLag ) ) { |
52 | 54 | exit; |
53 | 55 | } |
54 | 56 | |
— | — | @@ -73,7 +75,7 @@ |
74 | 76 | exit; |
75 | 77 | } |
76 | 78 | |
77 | | -if( $wgUseFileCache && isset($wgTitle) ) { |
| 79 | +if( $wgUseFileCache && isset( $wgTitle ) ) { |
78 | 80 | wfProfileIn( 'main-try-filecache' ); |
79 | 81 | // Raw pages should handle cache control on their own, |
80 | 82 | // even when using file cache. This reduces hits from clients. |