* $wgStyleSheetDirectory is no longer an alias for $wgStyleDirectory;
[lhc/web/wiklou.git] / index.php
index bc82eaf..c060cc4 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,22 +1,30 @@
 <?php
-#apd_set_pprof_trace();
-# Main wiki script; see design.doc
-#
+/**
+ * Main wiki script; see docs/design.txt
+ * @package MediaWiki
+ */
+
 $wgRequestTime = microtime();
 
 unset( $IP );
 @ini_set( 'allow_url_fopen', 0 ); # For security...
+
+# Valid web server entry point, enable includes.
+# Please don't move this line to includes/Defines.php. This line essentially defines
+# a valid entry point. If you put it in includes/Defines.php, then any script that includes
+# it becomes an entry point, thereby defeating its purpose.
+define( 'MEDIAWIKI', true );
+require_once( './includes/Defines.php' );
+
 if( !file_exists( 'LocalSettings.php' ) ) {
-       define( 'MEDIAWIKI', true );
        $IP = "." ;
-       require_once( './includes/Defines.php' );
        require_once( 'includes/DefaultSettings.php' ); # used for printing the version
 ?>
 <!DOCTYPE html PUBLIC "-//W3C/DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
        <head>
                <title>MediaWiki <?php echo $wgVersion ?></title>
-               <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+               <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
                
                <style type='text/css' media='screen, projection'>
                        html, body {
@@ -32,7 +40,7 @@ if( !file_exists( 'LocalSettings.php' ) ) {
                </style>
        </head>
        <body>
-               <img src='skins/common/images/wiki.png' alt='The MediaWiki logo' />
+               <img src='skins/common/images/mediawiki.png' alt='The MediaWiki logo' />
                
                <h1>MediaWiki <?php echo $wgVersion ?></h1>
                <div class='error'>
@@ -51,13 +59,6 @@ if( !file_exists( 'LocalSettings.php' ) ) {
        die();
 }
 
-# Valid web server entry point, enable includes.
-# Please don't move this line to includes/Defines.php. This line essentially defines
-# a valid entry point. If you put it in includes/Defines.php, then any script that includes
-# it becomes an entry point, thereby defeating its purpose.
-define( 'MEDIAWIKI', true );
-
-require_once( './includes/Defines.php' );
 require_once( './LocalSettings.php' );
 require_once( 'includes/Setup.php' );
 
@@ -80,6 +81,12 @@ if ( '' == $title && 'delete' != $action ) {
        $wgTitle = Title::newFromID( $curid );
 } else {
        $wgTitle = Title::newFromURL( $title );
+       /* check variant links so that interwiki links don't have to worry about 
+          the possible different language variants
+       */
+       if( !is_null($wgTitle) && $wgTitle->getArticleID() == 0 )
+               $wgContLang->findVariantLink( $title, $wgTitle );
+       
 }
 wfProfileOut( 'main-misc-setup' );