http://www.mediawiki.org/wiki/Special:Code/MediaWiki/74148

Revision: 74148
Author:   maxsem
Date:     2010-10-02 18:45:18 +0000 (Sat, 02 Oct 2010)

Log Message:
-----------
Fix botched up comments

Modified Paths:
--------------
    trunk/phase3/includes/db/DatabaseMssql.php

Modified: trunk/phase3/includes/db/DatabaseMssql.php
===================================================================
--- trunk/phase3/includes/db/DatabaseMssql.php  2010-10-02 16:55:20 UTC (rev 
74147)
+++ trunk/phase3/includes/db/DatabaseMssql.php  2010-10-02 18:45:18 UTC (rev 
74148)
@@ -68,7 +68,7 @@
 
                global $wgDBport;
 
-               if ( !strlen( $user ) ) { # # e.g. the class is being loaded
+               if ( !strlen( $user ) ) { # e.g. the class is being loaded
                        return;
                }
 
@@ -836,12 +836,12 @@
                        dieout( htmlspecialchars( $res ) );
                }
 
-               # # Avoid the non-standard "REPLACE INTO" syntax
+               # Avoid the non-standard "REPLACE INTO" syntax
                $f = fopen( "../maintenance/interwiki.sql", 'r' );
                if ( $f == false ) {
                        dieout( "<li>Could not find the interwiki.sql file" );
                }
-               # # We simply assume it is already empty as we have just 
created it
+               # We simply assume it is already empty as we have just created 
it
                $SQL = "INSERT INTO interwiki(iw_prefix,iw_url,iw_local) VALUES 
";
                while ( ! feof( $f ) ) {
                        $line = fgets( $f, 1024 );
@@ -983,7 +983,7 @@
                return implode( ' ', array( $straightJoins, $otherJoins ) );
        }
 
-       function strencode( $s ) { # # Should not be called by us
+       function strencode( $s ) { # Should not be called by us
                return str_replace( "'", "''", $s );
        }
 



_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to